-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "east-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node backend/index.js",
"watch": "cd frontend && webpack -w --progress --color --mode=development",
"production": "cd frontend && webpack",
"rebuild-better": "cd frontend && rm -rf dist && webpack --config webpack.better.config.js --progress --color --mode=development",
"rebuild": "cd frontend && rm -rf dist && webpack --progress --color --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eastFang/east-service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eastFang/east-service/issues"
},
"homepage": "https://github.com/eastFang/east-service#readme",
"dependencies": {
"babel-loader": "^7.1.4",
"babel-preset-react": "^6.24.1",
"bluebird": "^3.5.1",
"cheerio": "^1.0.0-rc.2",
"compass-mixins": "^0.12.10",
"fs": "0.0.1-security",
"koa": "^2.5.0",
"koa-cors": "0.0.16",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"mysql": "^2.15.0",
"node-sass": "^4.8.3",
"path": "^0.12.7",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2"
},
"devDependencies": {
"css-loader": "^0.14.5",
"happypack": "^5.0.0-beta.3",
"html-webpack-plugin": "^3.2.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
}
}