-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
40
41
{
"name": "consent-manager",
"version": "1.0.3",
"repository": "https://github.com/DieTechniker/consent-manager.git",
"author": "Lorenz Kahl <p224162@tk.de>",
"license": "MIT",
"devDependencies": {
"@parcel/transformer-sass": "2.6.0",
"autoprefixer": "^10.4.7",
"breakpoint-sass": "^2.7.1",
"cssnano": "^5.1.11",
"minimist": "^1.2.6",
"parcel": "^2.6.0",
"postcss": "^8.1.0",
"postcss-modules": "^4.1.11",
"posthtml": "^0.11.4",
"posthtml-include": "^1.2.0",
"posthtml-modules": "^0.4.2",
"sass": "^1.52.2",
"susy": "^3.0.5"
},
"scripts": {
"start": "parcel serve ./src/consentManager.html --https --open --no-cache",
"build": "rm -rf dist && parcel build ./src/consentManager.html --no-source-maps --no-optimize --no-cache",
"test": "parcel serve ./src/test.html --https --port 4321 --open"
},
"targets": {
"default": {
"includeNodeModules": true
}
},
"browserslist": [
">2%",
"not dead",
"ie 11",
"not op_mini all"
],
"dependencies": {
"@babel/polyfill": "^7.7.0"
}
}