-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 884 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
31
32
33
34
35
36
{
"name": "inventory",
"version": "0.0.0",
"private": true,
"engines": {
"node": "14.15.1"
},
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "DEBUG=inventory:* npm run devstart",
"tailwind:css": "postcss public/stylesheets/tailwind.css -o public/stylesheets/style.css"
},
"dependencies": {
"async": "^3.2.0",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"ejs": "^3.1.6",
"ejs-locals": "^1.0.2",
"express": "~4.16.1",
"express-validator": "^6.12.1",
"helmet": "^4.6.0",
"http-errors": "~1.6.3",
"mongoose": "^5.12.14",
"morgan": "~1.9.1",
"multer": "^1.4.3",
"postcss-cli": "^8.3.1"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"nodemon": "^2.0.7",
"postcss": "^8.3.5",
"tailwindcss": "^2.2.4"
}
}