-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.32 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.32 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "pwajet-example-addon",
"homepage": "https://github.com/simtechdev/pwajet-extension",
"version": "1.4.1",
"license": "MIT",
"private": true,
"pwajet": {
"company": "simtechdev"
},
"scripts": {
"start": "yarn rollup --config ./rollup.config.js -w",
"postbuild": "yarn emit-types",
"build": "yarn rollup --config ./rollup.config.js --environment NODE_ENV:production",
"types": "yarn tsc --noEmit",
"test": "jest",
"test:watch": "jest --onlyChanged --collectCoverage --runInBand --watch",
"lint": "eslint . --ext .ts,.tsx -c .eslintrc",
"emit-types": "yarn ts-node --project=tools/tsconfig.json tools/build-types.ts"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@module-federation/rollup-federation": "^0.0.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-html": "^0.2.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-replace": "^2.4.1",
"@svgr/webpack": "^5.2.0",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.8",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"autoprefixer": "^10.2.1",
"babel-loader": "^8.1.0",
"babel-plugin-jsx-owner": "^0.11.1",
"css-loader": "^5.0.1",
"cssnano": "^5.0.8",
"eslint": "^7.18.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.2.2",
"postcss": "^8.2.4",
"postcss-loader": "^4.1.0",
"postcss-nested": "^5.0.4",
"postcss-rtl": "^1.7.3",
"postcss-rtlcss": "^2.0.0",
"rollup": "^2.37.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-multi-input": "^1.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-visualizer": "^5.6.0",
"source-map-loader": "^2.0.0",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not IE 11",
"not IE_Mob 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn types"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
},
"browser": {
"fs": false
}
}