-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
64
65
66
67
68
69
70
{
"name": "crud-js",
"version": "1.0.0",
"description": "",
"keywords": [
"CRUD",
"database UI"
],
"scripts": {
"watch": "tsc -w --typeRoots ./types -p tsconfig.server.json",
"build-client-dev": "npx vite --config vite.config.js",
"build-client-prod": "npx vite build --config vite.config-prod.js",
"test": "jest --detectOpenHandles --verbose=true",
"build-server-dev": "tsc",
"build-server-prod": "rmdir /s /q build-prod & npx rollup --config"
},
"author": "",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.15.3",
"@popperjs/core": "^2.9.2",
"@types/body-parser": "^1.19.6",
"@types/gapi": "^0.0.47",
"@types/gapi.auth2": "^0.0.61",
"@types/pg": "^8.15.5",
"archiver": "^5.3.0",
"body-parser": "^1.19.0",
"bootstrap": "^5.3.7",
"express": "^4.17.1",
"font-awesome": "^4.7.0",
"google-auth-library": "^7.10.1",
"jquery": "^3.7.1",
"moment": "^2.29.1",
"multer": "^2.0.2",
"nodemailer": "^6.6.2",
"parse-multipart-data": "^1.2.0",
"pg": "^8.16.3",
"popper.js": "^1.14.3",
"preact": "^10.27.1",
"reset-css": "^5.0.1",
"sharp": "^0.34.3",
"summernote": "^0.9.1"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@eslint/js": "^9.34.0",
"@rollup/plugin-typescript": "^8.3.0",
"@stylistic/eslint-plugin": "^5.3.1",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@types/bootstrap": "^5.2.10",
"@types/express": "^5.0.3",
"@types/multer": "^2.0.0",
"@types/summernote": "^0.8.10",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"babel-loader": "^8.2.2",
"eslint": "^9.34.0",
"rollup": "^2.60.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.3"
},
"jest": {
"verbose": true
}
}