-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 KB
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
{
"name": "specbadge",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "./src/server.js",
"repository": "git@github.com:trybrito/specbadge.git",
"author": "Thiago Raniery Brito <thiagobritotrs@gmail.com>",
"license": "MIT",
"dependencies": {
"connect-mongo": "^4.6.0",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-csp-header": "^5.0.0",
"express-session": "^1.17.2",
"mongodb": "^4.2.0",
"node-fetch": "2.0",
"redis": "^4.0.0",
"serialize-javascript": "^6.0.0"
},
"scripts": {
"init-db": "node ./src/database/init.js",
"server": "nodemon .",
"cache": "redis-server",
"watch": "npx tailwindcss -i ./public/styles/global.css -o ./public/styles/tailwind.css --watch",
"purge": "NODE_ENV=production npx tailwindcss -i ./public/styles/global.css -o ./public/styles/tailwind.css",
"build": "yarn purge; gulp"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-cssnano": "^2.1.3",
"gulp-htmlmin": "^5.0.1",
"gulp-uglify": "^3.0.2",
"nodemon": "^2.0.15"
}
}