-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.3 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
{
"name": "contactable-mpa",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "concurrently \"nodemon\" \"npm run css:watch\"",
"build": "tsc && npm run css:build && npm run copy-assets",
"start": "node dist/index.js",
"css:build": "tailwindcss -i ./src/public/css/style.css -o ./src/public/css/output.css --minify",
"css:watch": "tailwindcss -i ./src/public/css/style.css -o ./src/public/css/output.css --watch",
"copy-assets": "mkdir -p dist/data dist/views dist/public && cp -r src/data/contacts.json dist/data/ && cp -r src/views/* dist/views/ && cp -r src/public/* dist/public/"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-ejs-layouts": "^2.5.1",
"method-override": "^3.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/express-ejs-layouts": "^2.5.4",
"@types/method-override": "^0.0.35",
"@types/node": "^22.9.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"nodemon": "^3.1.7",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-ejs": "^1.0.3",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}