-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.35 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
{
"name": "theholgaproject",
"version": "4.0.0",
"description": "Drag & drop an image into your browser and apply a Holga-like filter.",
"main": "src/js/index.js",
"config": {
"dir": "local"
},
"scripts": {
"copy": "./bin/copy-files.sh",
"deploy": "./bin/deploy.sh",
"serve": "http-server -p 9090 local/ -c-1",
"timestamp-bundles": "node bin/timestamp-bundles.js",
"watch": "nodemon -e css,js,html -x \"npm run start:js && npm run start:css\"",
"start:css": "postcss src/css/main.css -o local/css/bundle.css",
"start:js": "webpack --config webpack.dev.js",
"prestart": "npm run copy -- local",
"start": "npm run start:js && npm run start:css && npm run watch & npm run serve",
"build:css": "postcss src/css/main.css -o dist/css/bundle.min.css",
"build:js": "webpack --config webpack.prod.js",
"prebuild": "npm run copy -- dist",
"build": "npm run build:js && npm run build:css && npm run timestamp-bundles"
},
"repository": "https://github.com/jonchretien/theholgaproject",
"author": "Jon Chretien",
"license": "",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"cssnano": "^4.0.4",
"http-server": "^0.11.1",
"nodemon": "^1.17.5",
"postcss-cli": "^6.0.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-merge": "^4.1.3"
}
}