-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.24 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.24 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
67
68
69
70
71
72
73
{
"name": "sunshare",
"version": "1.0.0",
"description": "",
"main": "./dist/server.js",
"repository": {
"type": "git",
"url": "https://github.com/boxenergie/sunbase"
},
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^3.0.8",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.4",
"csurf": "^1.11.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"express-rate-limit": "^5.1.1",
"express-react-views": "^0.11.0",
"express-session": "^1.17.0",
"helmet": "^3.21.3",
"influx": "^5.5.1",
"jsonschema": "^1.2.5",
"mongo-sanitize": "^1.1.0",
"mongoose": "^5.8.11",
"node-schedule": "^1.3.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"q": "^1.5.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/connect-flash": "0.0.35",
"@types/cookie-parser": "^1.4.2",
"@types/csurf": "^1.9.36",
"@types/dotenv-safe": "^8.1.0",
"@types/express": "^4.17.3",
"@types/express-rate-limit": "^5.0.0",
"@types/express-session": "^1.17.0",
"@types/helmet": "0.0.45",
"@types/mongo-sanitize": "^1.0.1",
"@types/mongodb": "^3.5.2",
"@types/node": "^12.12.29",
"@types/node-schedule": "^1.3.0",
"@types/passport": "^1.0.2",
"@types/passport-local": "^1.0.33",
"@types/q": "^1.5.2",
"artillery": "^1.6.0",
"artillery-plugin-expect": "^1.3.0",
"artillery-plugin-faker": "^2.1.0",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only ./src/server.ts",
"prod": "tsc && ./scripts/copyStaticAssets.sh && NODE_ENV=production node ./dist/server.js",
"clean": "./scripts/cleanDist.sh",
"test": "npx artillery run ./tests/main.yml > ./tests/result.txt",
"test-quiet": "npx artillery run --quiet ./test/main.yml > ./tests/result.txt"
},
"author": "Teddy Evrard & Fabien Hervé & Alexandre Rouchouze",
"license": "MIT"
}