-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.89 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
{
"name": "ooly-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"api": "npx apidoc -i routes/ -o documentation/",
"docker:start": "docker-compose up -d",
"docker:build": "docker build -t ooly_db .",
"docker:stop": "docker-compose down",
"start": "nodemon server.js",
"migrate": "npx sequelize db:migrate",
"seed": "npx sequelize db:seed:all",
"seed:reset": "npx sequelize db:seed:undo:all && npx sequelize db:seed:all",
"migrate:reset": "npx sequelize db:migrate:undo:all && npm run migrate",
"migrate:seed": "npm run migrate:reset && npx sequelize db:seed:all",
"pretest": "cross-env NODE_ENV=test npm run migrate:seed && node suggestions.js",
"test": "cross-env NODE_ENV=test jest --silent --coverage --runInBand && coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Oo-ly/ooly-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Oo-ly/ooly-api/issues"
},
"homepage": "https://github.com/Oo-ly/ooly-api#readme",
"dependencies": {
"@sentry/node": "^5.16.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ger": "0.0.99",
"helmet": "^3.23.0",
"jsonwebtoken": "^8.5.1",
"knex": ">=0.19.5",
"mariadb": "^2.4.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": ">=4.5.7",
"sequelize": "^5.21.12",
"uuid": "^8.1.0"
},
"devDependencies": {
"apidoc": "^0.20.1",
"coveralls": "^3.1.0",
"faker": "^4.1.0",
"jest": "^25.5.4",
"sequelize-cli": "^5.5.1",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/config/"
]
}
}