-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.66 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "rm-cookie-check",
"version": "0.0.1",
"description": "ruhmesmeile Cookie Check",
"author": "Jonas Ulrich <[email protected]>",
"scripts": {
"start": "node ./bin/www",
"sapper": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"startsapper": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"reload": "touch src/routes/_layout.svelte",
"scss": "sass --no-source-map -s compressed ./static/",
"autoprefixer": "postcss -u autoprefixer -r ./static/global.css --no-map",
"build:css": "run-s 'scss' 'autoprefixer' 'reload'",
"watch:css": "onchange './static/**/*.scss' -- npm run build:css",
"dev": "run-p 'sapper' 'watch:css'"
},
"dependencies": {
"@neuekit/reboot": "^1.9.1",
"compression": "^1.7.1",
"polka": "^0.5.0",
"sirv": "^0.4.0"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.7.1",
"@babel/runtime": "7.7.2",
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-replace": "^2.2.0",
"autoprefixer": "9.7.1",
"npm-run-all": "^4.1.5",
"onchange": "6.1.0",
"postcss": "7.0.21",
"postcss-cli": "6.1.3",
"rollup": "1.26.3",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-svelte": "5.1.1",
"rollup-plugin-terser": "5.1.2",
"sapper": "0.27.9",
"sass": "1.23.3",
"svelte": "3.12.1",
"svelte-preprocess": "3.2.6"
}
}