-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 851 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 851 Bytes
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
{
"name": "customaction",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node bin/www.js",
"startdev": "nodemon bin/www.js"
},
"dependencies": {
"bootstrap": "^5.3.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.4.1",
"ejs": "^3.1.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.14",
"@types/ws": "^8.5.10",
"nodemon": "^3.0.3",
"typescript": "^5.3.3"
},
"nodemonConfig": {
"ignore": [
"**/test/**",
"**/docs/**"
],
"delay": 2500,
"ext": "*.ejs*.js*.mjs*.cjs*.json"
}
}