-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"scripts": {
"start": "webpack-dev-server --mode=development --port 9000 --env.isLocal=true",
"lint": "eslint src --ext js,ts,tsx",
"test": "cross-env BABEL_ENV=test jest --passWithNoTests",
"format": "prettier --write \"./**\"",
"build": "webpack --mode=production"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently yarn:test yarn:lint"
}
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.7.4",
"@babel/runtime": "^7.8.7",
"@types/systemjs": "^6.1.0",
"babel-eslint": "^11.0.0-beta.2",
"concurrently": "^5.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"html-webpack-plugin": "^4.0.4",
"husky": "^4.2.3",
"jest": "^25.2.7",
"jest-cli": "^25.2.7",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"serve": "^11.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2",
"@babel/preset-typescript": "^7.9.0",
"eslint-config-ts-important-stuff": "^1.0.0",
"typescript": "^3.8.3",
"webpack-config-single-spa-ts": "^1.4.2",
"ts-config-single-spa": "^1.7.0"
},
"dependencies": {
"single-spa": "^5.3.1",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/systemjs": "^6.1.0",
"@types/webpack-env": "^1.15.1"
}
}