-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "single-spa-playground",
"version": "1.0.0",
"scripts": {
"start": "webpack-dev-server",
"build": "rimraf dist && webpack --config webpack.config.js --mode=production && copyfiles index.html 404.html CNAME dist",
"prettier": "prettier --write './**'",
"lint": "eslint src"
},
"main": "dist/single-spa-playground.min.js",
"repository": "[email protected]:joeldenning/single-spa-playground.git",
"author": "Joel Denning <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint"
}
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"babel-eslint": "^11.0.0-beta.2",
"babel-loader": "^8.1.0",
"copyfiles": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react-important-stuff": "^2.0.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"prettier": "^2.0.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"file-loader": "^6.0.0",
"kremling": "^2.0.3",
"lodash-es": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2"
},
"engines": {
"node": ">=10"
}
}