-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.7 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.7 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
{
"name": "inkskill",
"version": "0.0.1",
"scripts": {
"start": "rm -f dist/css/bundle* && node server.js",
"build": "BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.production.js",
"lint": "./node_modules/.bin/eslint ./javascripts ./test",
"test": "NODE_ENV=production NODE_PATH=$NODE_PATH:$PWD/javascripts mocha --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"babel-runtime": "^6.3.19",
"extract-text-webpack-plugin": "^1.0.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.11.1",
"moment": "^2.13.0",
"react": "^0.14.5",
"react-bootstrap": "^0.29.2",
"react-dom": "^0.14.5",
"react-holder": "^1.0.0",
"react-redux": "^4.4.5",
"react-router": "^2.0.1",
"react-select": "^1.0.0-beta12",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.3.21",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.7.2",
"css-loader": "^0.23.1",
"eslint": "^0.21.2",
"eslint-plugin-react": "^2.3.0",
"expect": "^1.18.0",
"mocha": "^2.4.5",
"nock": "^8.0.0",
"node-sass": "^3.6.0",
"react-transform-hmr": "^1.0.1",
"redux-mock-store": "^1.0.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.8.4",
"webpack-dev-server": "^1.8.0"
}
}