-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.64 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
52
53
54
{
"name": "@samply/root-config",
"version": "1.0.0",
"scripts": {
"start": "webpack serve --port 9000 --env isLocal",
"lint": "eslint src --ext js,ts,tsx",
"test": "cross-env BABEL_ENV=test jest --passWithNoTests",
"format": "prettier --write .",
"check-format": "prettier --check .",
"prepare": "husky install",
"build": "concurrently npm:build:*",
"build:webpack": "webpack --mode=production",
"build:types": "tsc"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/runtime": "^7.15.3",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"serve": "^12.0.0",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.8.0",
"@babel/preset-typescript": "^7.15.0",
"eslint-config-ts-important-stuff": "^1.1.0",
"typescript": "^4.3.5",
"webpack-config-single-spa-ts": "^4.0.0",
"ts-config-single-spa": "^3.0.0"
},
"dependencies": {
"@types/jest": "^27.0.1",
"@types/systemjs": "^6.1.1",
"single-spa": "^5.9.3",
"@types/webpack-env": "^1.16.2",
"single-spa-layout": "^1.6.0",
"dotenv": "^16.0.2",
"dotenv-webpack": "^8.0.1",
"find-config": "^1.0.0"
},
"types": "dist/samply-root-config.d.ts"
}