-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"scripts": {
"start": "webpack serve",
"build": "webpack --mode=production",
"analyze": "webpack --mode=production --env analyze",
"lint": "eslint src",
"prettier": "prettier --write .",
"test": "jest --passWithNoTests",
"watch-tests": "jest --watch",
"coverage": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently yarn:test yarn:lint"
}
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@types/jest": "^24.0.23",
"babel-eslint": "^11.0.0-beta.2",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"concurrently": "^5.0.1",
"eslint": "^6.7.2",
"eslint-config-important-stuff": "^1.1.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"systemjs-webpack-interop": "^1.1.2",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-config-single-spa": "^2.0.0-beta.3",
"webpack-dev-server": "^4.0.0-beta.0",
"webpack-merge": "^5.7.3"
}
}