-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 831 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 831 Bytes
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
{
"name": "bluemoondev-website",
"version": "0.0.2",
"description": "The website for BlueMoonDev",
"scripts": {
"start": "ts-node ./server.ts",
"dev": "nodemon ./server.ts",
"css-build": "sass sass/mystyles.scss public/css/mystyles.css",
"css-watch": "npm run css-build -- --watch"
},
"dependencies": {
"express": "^4.19.2",
"mysql2": "^3.10.2",
"pug": "^3.0.3",
"sass": "^1.77.6"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.62.0",
"bulma": "^0.9.4",
"eslint": "^8.57.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}