-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "tosu-backend-node",
"version": "1.0.0",
"description": "Toimintasuunnitelmasovelluksen node.js backend",
"private": true,
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"lint": "eslint .",
"test": "cross-env-shell NODE_ENV=test \"npx sequelize db:create; npx sequelize db:migrate && jest --verbose; npx sequelize db:drop\"",
"start:test": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/partio-scout/tosu-backend-node.git"
},
"author": "ohtuvartio",
"license": "MIT",
"bugs": {
"url": "https://github.com/partio-scout/tosu-backend-node/issues"
},
"homepage": "https://github.com/partio-scout/tosu-backend-node#readme",
"dependencies": {
"axios": "^0.18.0",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"google-auth-library": "^2.0.0",
"jsonfile": "^5.0.0",
"keygrip": "^1.0.3",
"lodash.map": "^4.6.0",
"memory-cache": "^0.2.0",
"merge": ">=1.2.1",
"mock-session": "0.0.5",
"node-cron": "^2.0.1",
"npm": "^6.9.0",
"passport": "^0.4.0",
"passport-saml": "^0.35.0",
"passport-saml-metadata": "^1.5.2",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"request": "^2.88.0",
"save-dev": "^2.0.0",
"sequelize": "^4.38.1",
"sequelize-cli": "^4.1.1"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.5.0",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"supertest": "^3.3.0"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text",
"html"
]
}
}