-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
{
"name": "ladda-example-crud",
"version": "1.0.0",
"description": "",
"main": "app.js",
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
},
"devDependencies": {
"babel-core": "^6.16.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.16.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.8.0",
"exports-loader": "^0.6.3",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"node-sass": "^4.0.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
},
"dependencies": {
"axios": "^0.14.0",
"babel-eslint": "^7.1.1",
"classnames": "^2.2.5",
"es6-promise-promise": "^1.0.0",
"ladda-cache": "^0.2.7",
"ladda-logger": "^0.2.7",
"ladda-observable": "^0.2.7",
"ladda-react": "^0.2.7",
"lodash": "^4.17.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^2.4.1",
"recompose": "^0.21.2",
"shortid": "^2.2.8"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js 'src/**/*spec.js'",
"test:watch": "npm run test -- --watch",
"start": "./bin/copy_html.sh && webpack-dev-server --progress --colors --hot --config ./webpack.config.js",
"build": "./bin/copy_html.sh && webpack",
"deploy": "NODE_ENV=production npm run build && git subtree push --prefix dist origin gh-pages"
},
"keywords": [],
"author": "",
"license": "ISC"
}