-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-two.json
68 lines (68 loc) · 1.66 KB
/
package-two.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
{
"name": "library",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"engines": {
"node": "14.x",
"npm": "6.x"
},
"scripts": {
"test:ci": "jest",
"test": "jest --watchAll --no-cache",
"clean": "rimraf dist",
"compile": "tsc -p .",
"dev": "nodemon ./src/index.ts",
"client": "npm run dev --prefix client",
"build": "npm run clean && npm run compile",
"server": "node ./dist/index.js",
"start": "npm run build && npm run server",
"start:dev": "concurrently \"npm run dev\" \"npm run client\""
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/test/setup.ts"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.12.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.12",
"package.breezebd.com": "^0.0.7",
"rimraf": "^3.0.2",
"socket.io": "^4.4.1"
},
"devDependencies": {
"@types/cookie-session": "^2.0.43",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^17.0.8",
"@types/supertest": "^2.0.11",
"jest": "^27.3.1",
"mongodb-memory-server": "^8.0.2",
"nodemon": "^2.0.15",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.3.5"
},
"typeRoots": [
"../node_modules/@types",
"../@types"
],
"proxy": [
"http://localhost:3000",
"https://smartchargingstation.vercel.app"
]
}