-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 1.2 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
{
"name": "parcel-themekit",
"version": "1.0.0",
"description": "Parcelized version of Shopify Themekit",
"main": "index.js",
"author": "Chase Ohlson",
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.7.3",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"concurrently": "^5.0.2",
"jquery": "^3.3.1",
"parcel-bundler": "^1.12.4",
"postcss": "^7.0.26",
"terser": "^4.4.2",
"uglify-js": "^3.7.2"
},
"scripts": {
"dev": "concurrently \"parcel watch app/scripts/index.js --out-dir ./assets --out-file bundle.min.js\" \"parcel watch app/styles/index.scss --out-dir ./assets --out-file style.min.css\" \"theme watch\" ",
"build": "parcel build app/scripts/index.js --out-dir ./assets --out-file bundle.min.js --no-source-maps && parcel build app/styles/index.scss --out-dir ./assets --out-file style.min.css --no-source-maps",
"clean": "rm -rf ./node_modules && rm -rf /.cache && rm -rf ./assets/bundle.min.map && rm -rf ./assets/style.min.js && rm -rf ./assets/style.min.map",
"deploy": "yarn && yarn build && yarn clean && theme deploy"
},
"devDependencies": {
"cssnano": "^4.1.10",
"sass": "^1.23.7"
}
}