forked from tinacms/tinacms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.38 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
{
"name": "root",
"private": true,
"scripts": {
"lint": "eslint './packages/**/*{.ts,.tsx}'",
"build": "lerna run build --reject-cycles",
"bootstrap": "lerna bootstrap --hoist --reject-cycles --force-local",
"bs": "npm run bootstrap",
"dev": "lerna run dev --reject-cycles",
"nuke": "lerna clean -y && find packages -name 'build' -type d -prune -exec rm -rf '{}' + && find packages -name '.rts2_cache' -type d -prune -exec rm -rf '{}' +",
"hard-reset": "npm run nuke && npm run bs && npm run build",
"test": "lerna run test --reject-cycles",
"watch": "lerna run watch --parallel --reject-cycles"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@types/jest": "^24.0.15",
"@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",
"lerna": "^3.16.4",
"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.3",
"typescript": "^3.5.3"
},
"dependencies": {
"danger": "^9.2.0",
"react-frame-component": "^4.1.1"
}
}