-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "sportstore",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"watch": "tsc-watch --noClear --onSuccess \"node dist/server.js\"",
"server": "nodemon --exec npm run watch",
"client": "webpack serve",
"start": "npm-run-all --parallel server client"
},
"nodemonConfig": {
"ext": "js,handlebars,json",
"ignore": [
"dist/**",
"node_modules/**",
"templates/admin/**"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.0",
"@types/express-session": "^1.17.10",
"@types/node": "^20.6.1",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth20": "^2.0.14",
"@types/validator": "^13.11.5",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.3",
"connect-session-sequelize": "^7.1.7",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-handlebars": "^7.1.2",
"express-session": "^1.17.3",
"handlebars": "^4.7.8",
"helmet": "^7.1.0",
"htmx.org": "^1.9.10",
"http-proxy": "^1.18.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"sequelize": "^6.35.1",
"sqlite3": "^5.1.6",
"validator": "^13.11.0"
}
}