-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
63
64
65
66
67
68
69
70
71
{
"name": "editure-monorepo",
"private": true,
"repository": "https://github.com/tuture-dev/editure.git",
"workspaces": [
"packages/*",
"example"
],
"scripts": {
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"test": "jest",
"test:watch": "jest --watch",
"bootstrap": "lerna bootstrap",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"release": "rollup -c && lerna publish"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"pretty-quick --staged",
"eslint \"**/*.{js,jsx,ts,tsx}\""
]
},
"devDependencies": {
"@babel/core": "7.7.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/chai": "^4.2.10",
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-jest": "^24.9.0",
"babel-loader": "8.1.0",
"chai": "^4.2.0",
"editure": "*",
"editure-constants": "*",
"editure-react": "*",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^24",
"jest-environment-jsdom-fourteen": "0.1.0",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "0.4.2",
"lerna": "^3.20.2",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^2.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-jsx": "^1.0.3",
"rollup-plugin-typescript2": "^0.26.0",
"tuture-slate": "0.58.0",
"tuture-slate-react": "0.58.0",
"ts-jest": "^24",
"tslib": "^1.11.0",
"typescript": "^3.8.2"
}
}