forked from tinacms/tinacms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.85 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "root",
"private": true,
"scripts": {
"lint": "eslint \"./packages/**/*{.ts,.tsx}\"",
"build": "lerna run build --reject-cycles",
"bootstrap": "lerna bootstrap --hoist --reject-cycles --force-local",
"postinstall": "npm run bootstrap",
"bs": "npm run bootstrap",
"dev": "lerna run dev --reject-cycles",
"nuke": "./scripts/nuke.sh",
"hard-reset": "npm run nuke && npm run bs && npm run build",
"test": "lerna run test --reject-cycles",
"docs": "lerna run docs"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@types/jest": "^24.0.25",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.9.4",
"@types/vfile-message": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"commander": "^2.20.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"husky": "^4.2.3",
"jest": "^24.9.0",
"lerna": "^3.22.1",
"next": "^9.2.0",
"pretty-quick": "^2.0.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"rollup": "^1.21.4",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.22.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^24.3.0",
"tsdx": "^0.12.3",
"tslib": "^1.10.0",
"typedoc": "^0.16.2",
"typescript": "^3.8.2",
"typescript-plugin-styled-components": "^1.4.4"
},
"dependencies": {
"danger": "^10.5.4",
"depcheck": "^0.9.1",
"tinacms": "^0.18.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}