-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "invent",
"version": "1.0.0",
"description": "inVent empowers small private sellers by helping them manage their inventory like the pros.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"sass": "node-sass --output-style=expanded --source-map true --watch src/ -o dist/",
"build-sass": "node-sass style.scss public/css/style.css",
"watch-sass": "node-sass -w style.scss public/css/style.css"
},
"author": "Coty McKinney",
"license": "ISC",
"dependencies": {
"@types/mysql2": "github:types/mysql2",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.2",
"ejs": "^3.1.10",
"express": "^4.21.0",
"express-mysql-session": "^3.0.3",
"express-rate-limit": "^7.1.5",
"express-session": "^1.18.0",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"mysql2": "^3.10.2",
"node-sass": "^9.0.0",
"nodemon": "^3.0.3",
"npm": "^10.4.0",
"path": "^0.12.7",
"serve-favicon": "^2.5.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node": "^20.12.11"
}
}