-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "el-gato",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev:views": "parcel watch -p 4000 src/views/**/*.{html,css,js,ts}",
"dev:server": "tsc-watch --onSuccess \"node dist/index\"",
"dev": "concurrently \"pnpm dev:server\" \"pnpm dev:views\"",
"build:views": "parcel build src/views/**/*.{html,css,js,ts}",
"build:server": "tsc",
"build": "concurrently \"pnpm build:server\" \"pnpm build:views\""
},
"targets": {
"main": false,
"default": {
"distDir": "./dist/views"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^8.2.2",
"cookie-parser": "^1.4.6",
"express": "^4.18.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/node": "^20.10.6",
"assert": "^2.0.0",
"autoprefixer": "^10.4.16",
"browserify-zlib": "^0.2.0",
"buffer": "^5.5.0||^6.0.0",
"crypto-browserify": "^3.12.0",
"events": "^3.1.0",
"parcel": "^2.10.3",
"path-browserify": "^1.0.0",
"postcss": "^8.4.32",
"postcss-modules": "^4.3.0",
"process": "^0.11.10",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.0",
"string_decoder": "^1.3.0",
"tailwindcss": "^3.4.0",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3",
"url": "^0.11.0",
"util": "^0.12.3"
}
}