-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "messier-hunter",
"version": "0.0.0",
"private": true,
"scripts": {
"css": "postcss src/css/tailwind.css -o public/css/style.css",
"bundle": "browserify public/js/main.js -o public/js/bundle.js",
"workbox": "node scripts/swgen.js",
"babel": "babel src -d public",
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www"
},
"dependencies": {
"autoprefixer": "^9.6.1",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-inline-css": "^1.3.0",
"express-minify": "^1.0.0",
"hbs": "^4.1.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"numeral": "^2.0.6"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@fullhuman/postcss-purgecss": "^1.3.0",
"browserify": "^16.5.0",
"nodemon": "^1.19.2",
"postcss-cli": "^6.1.3",
"tailwindcss": "^1.1.2",
"tailwindcss-grid": "^1.2.1",
"uglify-es": "^3.3.9",
"workbox-build": "^4.3.1"
}
}