-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "reptile",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "better-npm-run build",
"start": "better-npm-run start",
"lint": "eslint --ext js --ext jsx src || exit 0",
"koaServer": "nodemon ./server/koaServer.js"
},
"betterScripts": {
"start": {
"command": "webpack-dev-server --progress --profile --colors",
"env": {
"WEBPACK_DEVTOOL": "#inline-source-map"
}
},
"build": {
"command": "webpack --config webpack.production.config.js --progress --profile --colors",
"env": {
"WEBPACK_DEVTOOL": "",
"NODE_ENV": "production"
}
}
},
"author": "",
"license": "ISC",
"dependencies": {
"classnames": "^2.2.5",
"extract-text-webpack-plugin": "^1.0.1",
"font-awesome": "^4.7.0",
"immutable": "^3.8.1",
"normalize.css": "^5.0.0",
"react": "15.3.0",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "15.3.0",
"react-redux": "^4.4.6",
"react-router": "^2.6.1",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-core": "6.13.2",
"babel-eslint": "^7.1.1",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"better-npm-run": "0.0.12",
"css-loader": "0.23.1",
"eslint": "^3.3.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^6.1.2",
"file-loader": "0.9.0",
"html-webpack-plugin": "^2.22.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"postcss-loader": "^1.2.0",
"react-css-modules": "^4.1.0",
"react-hot-loader": "1.3.0",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.13.1",
"webpack-cleanup-plugin": "^0.2.0",
"webpack-dev-server": "1.14.1"
}
}