-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.3 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
{
"name": "sms-management-app",
"version": "1.0.0",
"description": "SMS management api",
"main": "server.js",
"repository": "[email protected]:efalayi/sms-management-app.git",
"author": "Esther Falayi <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm-run-all build:config build:db build:server",
"build:config": "babel --root-mode upward config -d dist/config",
"build:db": "babel --root-mode upward database/models -d dist/database/models",
"build:server": "babel --root-mode upward server -d dist/server",
"build:dev:server": "babel-node server/server.js",
"coverage": "nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"db:migrate": "./node_modules/.bin/sequelize db:migrate",
"db:reset": "./node_modules/.bin/sequelize db:migrate:undo:all",
"db:seed": "./node_modules/.bin/sequelize db:seed:all",
"lint": "./node_modules/.bin/eslint './**/*.js'",
"postinstall": "yarn run db:migrate",
"prebuild": "./node_modules/.bin/rimraf dist && mkdir dist",
"prestart": "yarn run build",
"pretest": "npm-run-all db:reset db:migrate db:seed",
"start": "node dist/server/server.js",
"start:dev": "nodemon",
"test": "npm-run-all db:reset db:migrate db:seed test:server",
"test:server": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --opts ./mocha.opts"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chance": "^1.0.18",
"coveralls": "^3.0.2",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.2.1",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"nodemon": "^1.18.9",
"nyc": "^13.1.0",
"rosie": "^2.0.1",
"sinon": "^7.2.2",
"supertest": "^3.3.0"
},
"dependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge",
"body-parser": "^1.18.3",
"chalk": "2.4.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"npm-run-all": "^4.1.5",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"pushid": "^1.0.0",
"rimraf": "^2.6.2",
"sequelize": "^4.42.0",
"sequelize-cli": "^5.4.0"
}
}