-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 940 Bytes
/
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
{
"name": "expenseman-web",
"version": "0.0.2",
"description": "The website for ExpenseMan",
"scripts": {
"start": "ts-node ./server.ts",
"dev": "nodemon ./server.ts",
"css-build": "node-sass --omit-source-map-url sass/mystyles.scss public/css/mystyles.css",
"css-watch": "npm run css-build -- --watch"
},
"dependencies": {
"express": "^4.18.2",
"express-session": "^1.17.3",
"mysql2": "^2.3.3",
"pug": "^3.0.2"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@types/express-session": "^1.17.5",
"bulma": "^0.9.4",
"eslint": "^8.30.0",
"node-sass": "^8.0.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}