This repository was archived by the owner on Jul 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.79 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
{
"name": "candy-s",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/rollrat/candy-s",
"author": "rollrat <rollrat.cse@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node dist/app.js",
"build": "tsc -p .",
"dev": "tsc-watch --onSuccess \"ts-node app.ts\" ",
"test": "npx ts-jest --setupFiles dotenv/config --forceExit --detectOpenHandles"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@types/chai": "^4.3.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/sinon": "^10.0.11",
"@types/supertest": "^2.0.12",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"sequelize-cli": "^6.4.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/config": "^0.0.41",
"@types/express-mysql-session": "^2.1.3",
"@types/express-session": "^1.17.4",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/winston": "^2.4.4",
"axios": "^0.26.1",
"config": "^3.3.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"create-react-app": "^5.0.1",
"crypto": "^1.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-mysql-session": "^2.1.7",
"express-session": "^1.17.2",
"http-errors": "^2.0.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"sequelize": "^6.18.0",
"sequelize-typescript-generator": "^8.1.2",
"sinon": "^13.0.1",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
}
}