-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
97 lines (97 loc) · 2.66 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"commit": "git-cz",
"bootstrap": "./node_modules/.bin/lerna bootstrap",
"build": "./node_modules/.bin/lerna run build",
"test": "jest"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/execa": "^0.9.0",
"@types/express": "^4.16.0",
"@types/fs-extra": "^5.0.4",
"@types/glob": "^7.1.1",
"@types/gravatar": "^1.4.28",
"@types/jest": "^23.3.9",
"@types/minimist": "^1.2.0",
"@types/node": "^10.12.2",
"@types/ramda": "^0.25.41",
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"@types/react-router-dom": "^4.3.1",
"@types/react-timeago": "^4.1.0",
"@types/semver": "^5.5.0",
"@types/webpack": "^4.4.17",
"@types/webpack-chain": "^5.0.0",
"@types/webpack-dev-server": "^3.1.1",
"@types/http-proxy":"^1.16.2",
"antd": "^3.11.2",
"autoprefixer": "^9.4.3",
"babel-loader": "^8.0.4",
"babel-plugin-import": "^1.11.0",
"commitizen": "3.0.4",
"css-loader": "^2.0.1",
"cssnano": "^4.1.7",
"cz-conventional-changelog": "^2.1.0",
"gravatar": "^1.8.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lerna": "^3.13.0",
"lint-staged": "^8.0.4",
"mini-css-extract-plugin": "^0.5.0",
"mobx": "^5.8.0",
"mobx-react": "^5.4.3",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1",
"react-timeago": "^4.1.9",
"rxjs": "^6.3.3",
"sass-loader": "^7.1.0",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.4.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"react-dnd": "^7.0.2",
"react-dnd-html5-backend": "^7.0.2",
"react-json-editor-ajrm": "^2.5.9"
}
}