-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.97 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@eth-planet/pwa",
"version": "0.4.0",
"description": "App Project scaffold of WebCell v2",
"keywords": [
"web-component",
"typescript",
"jsx",
"web-cell"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/scaffold.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/scaffold/issues"
},
"main": "src/index.html",
"dependencies": {
"boot-cell": "^1.9.5",
"browser-unhandled-rejection": "^1.0.2",
"cell-router": "^2.0.4",
"classnames": "^2.3.1",
"mobx": "^5.15.7",
"mobx-strapi": "^0.2.4",
"mobx-web-cell": "^0.3.5",
"web-cell": "^2.3.0",
"web-utility": "^2.6.0"
},
"devDependencies": {
"@types/node": "^14.17.7",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"autoprefixer": "^9.8.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.1",
"less": "^4.1.1",
"lint-staged": "^11.1.1",
"parcel-bundler": "^1.12.5",
"postcss-modules": "^3.2.2",
"prettier": "^2.3.2",
"typescript": "^4.3.5",
"workbox-cli": "^6.1.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{html,md,css,less,json,yml,js,ts,tsx}": "prettier --write",
"*.{js,ts,tsx}": "eslint --fix"
},
"postcss": {
"modules": true,
"plugins": {
"autoprefixer": {
"grid": true
}
}
},
"scripts": {
"prepare": "husky install",
"test": "lint-staged",
"start": "parcel src/index.html --open",
"pack": "parcel build src/index.html --public-url .",
"build": "rm -rf dist/ && npm run pack && workbox generateSW"
}
}