forked from jankohlbach/secret-santa-gift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 920 Bytes
/
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
{
"name": "boilerplate-parcel",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "parcel serve src/html/*.html --dist-dir dev --no-cache --open",
"build": "rm -rf dist && mkdir dist && cp -r src/static/. dist && parcel build src/html/*.html --dist-dir dist --no-cache --public-url ./ --no-source-maps"
},
"author": "",
"license": "ISC",
"browserslist": [
"last 4 versions",
"ie 11",
"not ie < 11",
"> 0.2%",
"Firefox ESR",
"not dead"
],
"devDependencies": {
"@parcel/transformer-sass": "^2.0.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"parcel": "^2.0.0",
"stylelint": "^13.8.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-declaration-strict-value": "^1.7.5",
"stylelint-scss": "^3.18.0"
},
"dependencies": {
"normalize.css": "^8.0.1"
}
}