-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.42 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
65
66
67
68
{
"name": "postit",
"version": "1.0.0",
"description": "A simple application that allows friends and colleagues create groups for notifications.",
"main": "app.js",
"scripts": {
"start": "node dist/server/app.js",
"build": "babel server/app.js -d dist && babel server -d dist/server",
"server": "nodemon server/app.js --exec babel-node",
"test": "set NODE_ENV=test&& node setup.js && mocha --compilers js:babel-register server/test/controllers/",
"cover": "set NODE_ENV=test&& babel-node ./node_modules/babel-istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- server/test/controllers/",
"sass": "sass --watch template/css/mainStyle.scss:template/css/style.css",
"migrate": "sequelize db:migrate:undo:all && sequelize db:migrate",
"coveralls": "npm run cover && cat ./coverage/lcov.info | coveralls",
"migrate-test": "set NODE_ENV=test&& sequelize db:migrate:undo:all && sequelize db:migrate && sequelize db:seed:all",
"start-cover": "npm run migrate-test && npm test && npm run migrate-test && npm run cover",
"build_config": "babel webpackES6.js -o webpack.config.js",
"webpack": "webpack -d --watch"
},
"author": "Ademola Hussain",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-istanbul": "^0.12.2",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.11.0",
"q": "^1.5.0",
"sinon": "^4.0.0",
"webpack": "^3.10.0"
},
"dependencies": {
"axios": "^0.17.1",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"bcrypt": "^1.0.3",
"body-parser": "^1.17.2",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.1",
"chai-http": "^3.0.0",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-session": "^1.15.3",
"jsonwebtoken": "^8.1.0",
"mocha": "^3.4.2",
"morgan": "^1.8.2",
"path": "^0.12.7",
"pg": "^6.4.0",
"pg-hstore": "^2.3.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sequelize": "^4.3.1",
"sequelize-cli": "^2.7.0"
}
}