-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 969 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 969 Bytes
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
{
"name": "github-env-manager",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "yarn serve",
"serve": "node ./bin/www",
"build": "yarn build-css",
"dev": "yarn build-css && cross-env DEBUG=github-env-manager:* NODE_ENV=development yarn serve",
"build-css": "cross-env node_modules/postcss-cli/bin/postcss -c postcss.config.js public/css/tailwind.css -o public/css/style.css"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^3.0.0",
"autoprefixer": "9.8.6",
"cookie-parser": "~1.4.4",
"cross-env": "^7.0.2",
"cssnano": "^5.1.13",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "~3.1.10",
"express": "~4.19.2",
"express-ejs-layouts": "^2.5.0",
"express-session": "^1.17.1",
"http-errors": "^1.8.0",
"morgan": "~1.9.1",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.4",
"postcss-cli": "^8.0.0",
"session-file-store": "^1.5.0",
"tailwindcss": "^3.1.8"
}
}