-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.73 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.73 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
79
80
81
82
83
84
85
{
"name": "document-management",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/andela-wmaina/document-management.git",
"author": "Warenga <warenga.maina@andela.com>",
"license": "MIT",
"scripts": {
"pre-start": "webpack-dev-server",
"start": "NODE_ENV=development && node server.js && webpack",
"test": "NODE_ENV=test npm run seed && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec ./server/tests --timeout 20000",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"start:dev": "nodemon server.js",
"migrate": "sequelize db:migrate:undo:all && sequelize db:migrate",
"seed": "npm run migrate && sequelize db:seed:all",
"webpack": "webpack-dev-server"
},
"dependencies": {
"@babel/core": "^7.1.6",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^3.0.1",
"@material-ui/icons": "^3.0.1",
"Babel": "0.0.1",
"axios": "^0.15.3",
"babel": "^6.23.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.16.1",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"history": "^4.7.2",
"html-webpack-plugin": "^2.28.0",
"jsonwebtoken": "^7.3.0",
"lodash": "^4.17.4",
"material-ui": "^0.17.4",
"morgan": "^1.9.1",
"path": "^0.12.7",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"prop-types": "^15.6.2",
"react": "^16.3.2",
"react-dom": "^16.3.0",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"sequelize": "^3.30.2",
"sequelize-cli": "^2.5.1",
"style-loader": "^0.23.0",
"superagent": "^3.5.2",
"validator": "^7.0.0",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^2.3.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-stage-0": "^7.0.0",
"coveralls": "^2.12.0",
"css-loader": "^1.0.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"g": "^2.0.1",
"global": "^4.3.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"node-sass": "^4.9.3",
"nodemon": "^1.11.0",
"sass-loader": "^7.1.0",
"webpack": "^2.7.0"
}
}