-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.49 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "senior-enarc-backend",
"version": "1.0.0",
"description": "",
"main": "output/lib/server.js",
"scripts": {
"prebuild": "bash ./check.sh",
"build": "tsc",
"postbuild": "npm run lint",
"lint": "eslint lib test --ext .js,.ts",
"premysql": "npm run build",
"mysql": "node lib/sqlcli.js",
"pretest": "npm run lint",
"test": "mocha",
"pretest-coverage": "npm run lint",
"test-coverage": "nyc mocha",
"pretest-codecov": "npm run lint",
"test-codecov": "nyc --reporter=lcov mocha",
"posttest-codecov": "codecov",
"prestart": "npm run build",
"start": "node output/lib/server.js",
"fixlint": "eslint --fix lib test --ext .js,.ts",
"docs": "npx typedoc --out docs lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theKidOfArcrania/Senior-Enarc-website.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/theKidOfArcrania/Senior-Enarc-website/issues"
},
"homepage": "https://github.com/theKidOfArcrania/Senior-Enarc-website#readme",
"dependencies": {
"assert": "^2.0.0",
"bcrypt": "^4.0.1",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.2",
"express-session": "^1.17.0",
"fs": "0.0.1-security",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"nodejs-snowflake": "^1.4.1",
"nodemailer": "^6.4.5",
"session-file-store": "^1.4.0",
"swagger-ui-dist": "^3.25.1",
"typescript-eslint": "0.0.1-alpha.0"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.12.19",
"@types/assert": "^1.4.6",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.6",
"@types/express-fileupload": "^1.1.3",
"@types/express-session": "^1.17.0",
"@types/mocha": "^7.0.2",
"@types/morgan": "^1.9.0",
"@types/mysql": "^2.15.10",
"@types/node": "^13.13.2",
"@types/session-file-store": "^1.2.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"cli-table3": "^0.6.0",
"codecov": "^3.7.1",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^22.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.4",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"superagent-prefix": "0.0.2",
"supertest": "^4.0.2",
"ts-node": "^8.9.0",
"typedoc": "^0.17.4",
"typescript": "^3.8.3",
"why-is-node-running": "^2.1.2"
},
"engines": {
"node": ">=12.0.0"
}
}