-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.6 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
{
"name": "react-mindmap",
"version": "1.0.0",
"main": "dist/bundle.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wangtianlun/react-mindmap.git"
},
"author": {
"name": "王天伦",
"email": "chongxinkaishi8188@gmail.com"
},
"scripts": {
"start": "webpack-dev-server --config ./config/webpack.config.example.dev.js --open",
"watch": "node --max_old_space_size=8192 ./node_modules/webpack/bin/webpack --config ./config/webpack.config.dev.js --watch",
"build": "NODE_ENV=production node --max_old_space_size=8192 ./node_modules/webpack/bin/webpack --config ./config/webpack.config.prod.js --colors --profile --optimize-minimize",
"build:example": "NODE_ENV=production node --max_old_space_size=8192 ./node_modules/webpack/bin/webpack --config ./config/webpack.config.example.prod.js --colors --profile --optimize-minimize"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.8.23",
"antd": "^3.20.5",
"autoprefixer": "^8.2.0",
"babel-loader": "^8.0.6",
"css-loader": "^0.28.11",
"cz-conventional-changelog": "^2.1.0",
"moment": "^2.22.2",
"postcss-loader": "^2.1.3",
"precss": "^3.1.2",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^4.3.1",
"style-loader": "^0.20.3",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "4.28.0",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1",
"webpack-dev-server": "3.7.2"
}
}