-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "ohtuilmo-backend",
"version": "1.0.0",
"description": "Node.js backend",
"main": "index.js",
"scripts": {
"watch": "cross-env NODE_ENV=development nodemon index.js",
"start": "cross-env NODE_ENV=production node index.js",
"test": "npm run lint",
"lint": "eslint .",
"db:create": "sequelize db:create",
"db:drop": "sequelize db:drop",
"db:migrate": "sequelize db:migrate",
"db:seed:all": "sequelize db:seed:all",
"db:nuke": "npx npm-run-all -s db:drop db:create",
"db:recreate": "npx npm-run-all -s db:nuke db:migrate db:seed:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ohtuprojekti-ilmo/ohtuilmo-backend.git"
},
"keywords": [
"node"
],
"author": "jexniemi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ohtuprojekti-ilmo/ohtuilmo-backend/issues"
},
"homepage": "https://github.com/ohtuprojekti-ilmo/ohtuilmo-backend#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^5.0.1",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"nodemailer": "^6.4.17",
"pg": "^7.14.0",
"pg-hstore": "^2.3.2",
"randomstring": "^1.1.5",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.4.0",
"shuffle-array": "^1.0.1",
"unfuck-utf8-headers-middleware": "^1.0.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.14.1",
"husky": "^1.2.0",
"nodemon": "^1.18.7"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}