-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
{
"name": "inventory-management-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"seed": "node seeds/seed.js",
"dev": "concurrently \"npm:watch-*\"",
"start": "node server.js",
"watch-js": "nodemon -e js,handlebars server.js",
"watch-sass": "sass --watch scss:public/assets/css/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevin-aminzadeh/inventory-management-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kevin-aminzadeh/inventory-management-app/issues"
},
"homepage": "https://github.com/kevin-aminzadeh/inventory-management-app#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"bootstrap": "^5.0.0-beta3",
"chart.js": "^2.9.4",
"connect-session-sequelize": "^7.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.1",
"express-session": "^1.17.1",
"handlebars": "^4.7.7",
"mysql2": "^2.2.5",
"sequelize": "^6.6.2"
},
"devDependencies": {
"concurrently": "^6.0.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-note": "^0.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"sass": "^1.32.8"
}
}