-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.01 KB
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
{
"name": "ts-react",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/nunoblue/ts-react.git",
"author": "hylee <hylee@nkia.co.kr>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:ui": "set NODE_ENV=production&&webpack -p --config webpack.prod.config.js",
"build:server": "babel ./server --out-dir dist/",
"start:prod": "set NODE_ENV=production&&node ./dist/server.js",
"start": "webpack-dev-server --config webpack.dev.config.js --inline",
"start:server": "set NODE_ENV=development && nodemon --exec babel-node --presets es2015 ./server/server.js --watch ./server"
},
"dependencies": {
"antd": "^2.10.4",
"axios": "^0.16.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"store": "^2.0.4",
"jwt-decode": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-import": "^1.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"history": "^4.6.1",
"html-webpack-plugin": "^2.28.0",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"material-ui": "^0.18.1",
"muicss": "^0.9.16",
"path": "^0.12.7",
"react-addons-update": "^15.5.2",
"react-hot-loader": "next",
"react-tap-event-plugin": "^2.0.1",
"redux-thunk": "^2.2.0",
"style-loader": "^0.18.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0"
}
}