-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.86 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
62
63
64
{
"name": "movie-finder",
"version": "0.1.0",
"description": "A new React project.",
"main": "server/index.js",
"scripts": {
"build": "npm run less && webpack --mode development",
"start": "npm run build && node server/index.js",
"less": "lessc src/css/style.less dist/css/style.css",
"lint": "eslint .",
"test": "npm run build && mocha test/setup.js test/*.spec.js --exit"
},
"dependencies": {
"axios": "^0.16.1",
"babel": "^6.3.26",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.4.3",
"bluebird": "^3.5.0",
"dotenv": "^6.1.0",
"express": "^4.15.3",
"file-loader": "^0.11.2",
"json-loader": "^0.5.4",
"less": "^3.8.1",
"less-plugin-autoprefix": "^1.5.1",
"lodash": "^4.17.10",
"lodash-webpack-plugin": "^0.10.2",
"morgan": "^1.8.1",
"prop-types": "^15.5.10",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-promise-middleware": "^5.1.1",
"serve-favicon": "^2.0.1",
"url-loader": "^1.1.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.1.0",
"axios-mock-adapter": "^1.6.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-http": "^4.2.0",
"csx": "^4.0.0",
"enzyme": "^2.4.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-loopback": "^4.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-react": "^6.2.0",
"mocha": "^5.2.0",
"nightmare": "^3.0.1",
"react-addons-test-utils": "^15.6.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
}
}