-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
33 lines (33 loc) · 1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "root",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git://github.com/datocms/structured-text.git"
},
"scripts": {
"test": "npm run lint && jest",
"build": "lerna bootstrap && lerna run build",
"publish": "npm run build && npm run test && lerna publish",
"publish-next": "npm run build && npm run test && lerna publish --dist-tag next",
"lint": "eslint . --ext .ts,.tsx",
"prettier": "prettier --write \"**/*.{ts,tsx,json}\"",
"prepare": "husky install"
},
"license": "MIT",
"author": "Stefano Verna <[email protected]>",
"homepage": "https://github.com/datocms/structured-text"
}