-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "phoster-back",
"version": "0.4.0",
"author": "Mark Khramko <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MarkKhramko/phoster-back"
},
"homepage": "https://github.com/MarkKhramko/phoster-back#readme",
"bugs": {
"url": "https://github.com/MarkKhramko/phoster-back/issues"
},
"scripts": {
"prestart": "",
"start": "node ./app/app.js",
"dev": "cross-env NODE_ENV=development nodemon --exec npm start",
"migrate": "cross-env NODE_ENV=development cross-env DB_SHOULD_MIGRATE=true node ./app/app.js",
"prepush": "npm test",
"fix-prepush-errors": "node_modules/.bin/eslint --fix ./",
"production": "cross-env NODE_ENV=production node ./app/app.js",
"test": "cross-env NODE_ENV=testing jest --coverage;",
"test-ci": "jest --coverage --forceExit"
},
"jest": {
"globals": {
"__DEV__": true
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.2",
"cloudinary": "^1.11.0",
"compression": "^1.7.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.4",
"express-routes-mapper": "^1.0.2",
"formidable": "^1.2.1",
"helmet": "^3.12.0",
"jsonwebtoken": "^8.2.1",
"pg": "^7.5.0",
"pg-hstore": "^2.3.2",
"pug": "^2.0.3",
"sequelize": "^4.37.6",
"uuid": "^3.3.2"
},
"devDependencies": {
"cross-env": "^5.1.4",
"husky": "^0.14.3",
"jest": "^22.4.3",
"nodemon": "^1.17.3",
"shx": "^0.2.2",
"supertest": "^3.0.0"
}
}