-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.22 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.22 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
74
75
76
77
78
{
"name": "StarterApp",
"version": "1.0.0",
"description": "A basic app to get you up and running able to deploy to heroku",
"main": "app.js",
"engines": {
"node": "7.0.0"
},
"scripts": {
"build": "webpack -p",
"dev": "webpack -d --watch",
"postinstall": "webpack -p",
"seed-dev": "NODE_ENV=development node seed/seed.js",
"seed-test": "NODE_ENV=test node seed/seed.js",
"start": "NODE_ENV=development nodemon --harmony-async-await app.js",
"test": "NODE_ENV=test mocha tests/helpers/globalTestVariables.js tests --harmony-async-await --recursive",
"cover": "NODE_ENV=test nyc --reporter=html --reporter=text mocha tests/helpers/globalTestVariables.js tests --harmony-async-await --recursive"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"bcrypt": "^1.0.1",
"body-parser": "^1.15.2",
"css-loader": "^0.26.1",
"deep-equal": "^1.0.1",
"express": "^4.14.0",
"express-session": "^1.14.2",
"extract-text-webpack-plugin": "^1.0.1",
"lodash": "^4.17.2",
"node-sass": "^4.0.0",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.2",
"sequelize": "^3.27.0",
"style-loader": "^0.13.1",
"webpack": "^1.14.0"
},
"devDependencies": {
"chai": "^3.5.0",
"enzyme": "^2.6.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.7.1",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"nock": "^9.0.2",
"nyc": "^10.0.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"redux-mock-store": "^1.2.1",
"sinon": "^1.17.6",
"sinon-as-promised": "^4.0.2"
},
"nyc": {
"include": [
"**/src/**"
],
"extension": [
".jsx",
"/src/server/models/db/db.js"
]
}
}