forked from ArtOfCode-/openletter
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "openletter-2023",
"version": "0.0.0",
"private": true,
"main": "build/app.js",
"scripts": {
"exec": "exec",
"cmd": "cmd",
"typecheck": "tsc --noEmit",
"test": "eslint .",
"lint": "npm run test -- --fix",
"dashboard": "cross-env DEBUG=app:* node build/app.js",
"build": "sh ./build.sh || exit 1",
"build-views": "sh ./build-views.sh || exit 1",
"console": "node ./build/console.js"
},
"dependencies": {
"chalk": "^4.1.2",
"debug": "^4.3.4",
"ejs": "^3.1.9",
"ejs-layouts": "^0.0.1",
"express": "^4.18.2",
"mysql2": "^3.3.4",
"node-fetch": "^2.6.11",
"node-sass-middleware": "^1.0.0",
"serve-favicon": "^2.5.0",
"typescript": "^5.1.3",
"uglify-js": "^3.17.4"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/node": "^12.6.9",
"@types/node-fetch": "^2.6.4",
"@types/node-sass-middleware": "^0.0.32",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9"
}
}