forked from sfeir-open-source/sfeir-school-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@sfeir/school-pwa200",
"version": "2.0.0-rc.1",
"description": "Exercices and demos for the PWA SFEIR School",
"contributors": [
{
"name": "Florian Orpelière",
"email": "[email protected]"
},
{
"name": "Wassim Chegham",
"email": "[email protected]"
},
{
"name": "Jean-Francois Garreau",
"email": "[email protected]"
},
{
"name": "Noël Macé",
"email": "[email protected]"
},
{
"name": "Cyril Balit",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Sfeir/pwa-200.git"
},
"keywords": [
"PWA, service worker, vanillajs, materials"
],
"scripts": {
"start": "parallelshell \"npm run start-app $npm_config_step\" \"npm run server\"",
"start-app": "cross-var webpack-dev-server --step-$npm_config_step",
"dev": "webpack-dev-server",
"server": "json-server assets/mocks/people.json --routes assets/mocks/routes.json",
"precommit": "lint-staged",
"prettify": "prettier --write ./**/*.{json,html,css,scss,md,js,ts}"
},
"bugs": {
"url": "https://github.com/Sfeir/pwa-200/issues"
},
"homepage": "https://github.com/Sfeir/pwa-200#readme",
"dependencies": {
"@babel/core": "^7.4.3",
"@webcomponents/webcomponentsjs": "^2.2.7",
"cross-var": "^1.1.0",
"idb": "^5.0.4",
"json-server": "^0.16.1",
"lit-element": "^2.1.0",
"normalize.css": "8.0.1",
"pwa-helpers": "^0.9.1"
},
"private": true,
"devDependencies": {
"babel-core": "~6.26.3",
"babel-loader": "~8.0.5",
"babel-polyfill": "~6.26.0",
"babel-preset-env": "~1.7.0",
"css-loader": "~2.1.1",
"file-loader": "~3.0.1",
"html-webpack-harddisk-plugin": "~1.0.1",
"html-webpack-plugin": "~3.2.0",
"husky": "^1.3.1",
"lighthouse": "^6.1.1",
"lint-staged": "^8.1.5",
"lodash": ">=4.17.13",
"parallelshell": "3.0.1",
"prettier": "^1.16.4",
"style-loader": "~0.23.1",
"url-loader": "~1.1.2",
"webpack": "^4.32.0",
"webpack-cli": "~3.3.0",
"webpack-dev-server": "^3.4.1"
}
}