-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "SMS-Management-System",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel server/ --out-dir dist/",
"heroku-postbuild": "sequelize db:migrate",
"start": "babel-node ./bin/www",
"start:dev": "nodemon --exec babel-node ./bin/www",
"testServ": "NODE_ENV=test npm run migrate:test && NODE_ENV=test npm run seed:test && NODE_ENV=test mocha -t 100000 --require babel-core/register test/* --exit",
"seed:test": "sequelize db:migrate",
"migrate:test": "sequelize db:migrate:undo:all",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"morgan": "^1.9.1",
"pg": "^7.6.1",
"pg-hstore": "^2.3.2",
"save": "^2.3.3",
"sequelize": "^4.41.2",
"sequelize-cli": "^5.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.18.7"
}
}