-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.36 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
{
"name": "cardinalhours_v2",
"version": "1.0.0",
"description": "Rewrite of login server for CardinalBotics",
"main": "app.ts",
"scripts": {
"rimraf": "./node_modules/rimraf/bin.js",
"start": "npm run build && node ./dist/app.js",
"build": "rimraf ./dist/ && tsc --project basic.tsconfig.json",
"test": "rimraf ./test/ && tsc --project test.tsconfig.json && cross-env NODE_ENV=testing mocha ./test/tests/**/*.spec.js ./test/integration-tests/**/*.spec.js --exit --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Team4159/CardinalHoursServerV2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Team4159/CardinalHoursServerV2/issues"
},
"homepage": "https://github.com/Team4159/CardinalHoursServerV2#readme",
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@types/chai": "^4.3.11",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.6",
"@types/supertest": "^6.0.2",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"supertest": "^6.3.4",
"typescript": "^5.3.3"
},
"dependencies": {
"body-parser": "^1.20.2",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"mysql2": "^3.6.5",
"rimraf": "^5.0.5",
"winston": "^3.11.0"
}
}