This repository was archived by the owner on Apr 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.99 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.99 KB
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
53
54
55
56
57
58
59
{
"name": "schnitzel",
"description": "Schnitzeljagt",
"version": "0.1.0",
"scripts": {
"start": "webpack-dev-server --inline --progress --config build/config/webpack.conf.dev.js --port 8080",
"prod": "webpack-dev-server --inline --progress --config build/config/webpack.conf.prod.js --port 8080",
"build": "rimraf dist && webpack --config build/config/webpack.conf.prod.js --progress --profile --bail",
"db-update": "update-couch-designs --db ${DB}/challenges --docs 'src/db/challenges/*.js'"
},
"dependencies": {
"abstract-state-router": "^6.0.4",
"hammerjs": "^2.0.8",
"material-design-lite": "^1.3.0",
"pouchdb-adapter-http": "^6.4.1",
"pouchdb-adapter-idb": "^6.4.1",
"pouchdb-authentication": "^0.5.5",
"pouchdb-core": "^6.4.1",
"pouchdb-replication": "^6.4.1",
"pouchdb-validation": "^1.2.1",
"sausage-router": "^1.1.2",
"svelte-state-renderer": "^1.2.5",
"svelte-transitions": "^1.1.1"
},
"devDependencies": {
"babili-webpack-plugin": "^0.1.2",
"copy-webpack-plugin": "^4.3.1",
"css-mqpacker": "^6.0.1",
"cssnano": "^3.10.0",
"eslint": "^4.14.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.1",
"favicons-webpack-plugin": "bbuhler/favicons-webpack-plugin",
"html-webpack-plugin": "^2.30.1",
"offline-plugin": "^4.9.0",
"open-browser-webpack-plugin": "^0.0.5",
"postcss-cssnext": "^2.11.0",
"postcss-hexrgba": "^1.0.0",
"postcss-html-loader": "bbuhler/postcss-html-loader#8adbbb0",
"rimraf": "^2.6.2",
"svelte": "^1.50.1",
"svelte-hot-loader": "^1.5.0",
"svelte-loader": "^2.3.3",
"update-couch-designs": "bbuhler/update-couch-designs",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^4.1.1",
"zopfli-webpack-plugin": "^0.1.0"
},
"postcss": {
"plugins": {
"postcss-hexrgba": {},
"postcss-cssnext": {},
"css-mqpacker": {},
"cssnano": {}
}
}
}