-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name": "astral-calendar",
"version": "1.0.0",
"main": "./build/index.js",
"scripts": {
"dev:client": "webpack --watch",
"dev:server": "tsnd --project ./src/server --watch ./src/server/pages --transpile-only ./src/server/index.ts",
"build": "webpack --mode=production --node-env=production && tsc -b",
"start": "NODE_ENV=production node .",
"prepare": "[ -x \"$(command -v husky)\" ] && [ -d .git ] && husky install || true",
"sass": "sass --watch ./src/styles/main.sass:./public/styles/main.css"
},
"keywords": [],
"author": "Andrew Voynov",
"license": "AGPL-3.0-only",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/express": "^4.17.21",
"@types/hbs": "^4.0.4",
"css-loader": "^6.11.0",
"filemanager-webpack-plugin": "^8.0.0",
"husky": "^8.0.3",
"mini-css-extract-plugin": "^2.9.1",
"pretty": "^2.0.0",
"pretty-quick": "^3.3.1",
"sass": "^1.79.3",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.4"
},
"dependencies": {
"csv-parse": "^5.5.6",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"hbs": "^4.2.0"
}
}