-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.84 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": "pbl-backend",
"version": "1.0.0",
"description": "pick-by-light-system backend",
"main": "index.js",
"scripts": {
"dev": "tsc-watch --project . --outDir ./dist --onSuccess \"nodemon ./dist/index.js\"",
"start": "node dist/index.js",
"build": "tsc",
"test": "mocha -r ts-node/register src/tests/chai/index.ts",
"init": "src/index.ts",
"addData": "tsc && node dist/tests/scripts/addtestdata.js",
"addESData": "tsc && node dist/tests/scripts/addestestdata.js",
"addIfEmpty": "tsc && node dist/tests/scripts/addtestdataifempty.js",
"removeData": "tsc && node dist/tests/scripts/removetestdata.js"
},
"repository": {
"type": "git",
"url": "[email protected]/PBL-Pick-By-Light/BE-Backend.git
},
"author": "pbl-backend-team",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/config": "^0.0.41",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/mocha": "^9.0.0",
"@types/uuid": "^8.3.1",
"chai": "^4.3.4",
"nodemon": "^2.0.14",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.4.4",
"uuid": "^8.3.2"
},
"dependencies": {
"@types/cors": "^2.8.12",
"@types/countdown": "^0.0.8",
"@types/extend": "^3.0.1",
"@types/jsonwebtoken": "^8.5.6",
"@types/random-bytes": "^1.0.1",
"axios": "^0.24.0",
"chai-http": "^4.3.0",
"config": "^3.3.7",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"countdown": "^2.6.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"extend": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"ldap-authentication": "^2.2.9",
"mocha": "^9.1.3",
"mongoose": "^6.1.6",
"random-bytes": "^1.0.0",
"timer-node": "^5.0.5",
"tsc-watch": "^4.6.0",
"tslint-config-google": "^1.0.1"
},
"files": [
"dist/**/*"
]
}