-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 4.22 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "webpack-ts-mpa-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"start": "webpack-dev-server",
"build": "webpack --config webpack.config.prod.ts",
"start:prod": "ts-node server.ts",
"lint": "eslint . --ext .js,.ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(html|css|js|ts|json)\"",
"prepare": "husky install",
"e2e": "cypress run",
"e2e:chrome": "cypress run --browser chrome",
"e2e:record": "cypress run --record",
"e2e:record:chrome": "cypress run --record --browser chrome",
"e2e:record:edge": "cypress run --record --browser edge",
"e2e:record:firefox": "cypress run --record --browser firefox",
"e2e:record:parallel": "cypress run --record --parallel",
"test:ci": "run-p --race start e2e",
"test:ci:chrome": "run-p --race start e2e:chrome",
"test:ci:record": "run-p --race start e2e:record",
"test:ci:record:chrome": "run-p --race start e2e:record:chrome",
"test:ci:record:edge": "run-p --race start e2e:record:edge",
"test:ci:record:firefox": "run-p --race start e2e:record:firefox",
"test:ci:record:parallel": "run-p --race start e2e:record:parallel",
"cy:verify": "cypress verify",
"cy:info": "cypress info",
"cy:version": "cypress version",
"cy:cache:list": "cypress cache list",
"cy:run": "cypress run",
"cy:run:record": "cypress run --record",
"cy:open": "cypress open"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"npm run format",
"git add"
],
"./**/*.{js,jsx,ts,tsx,json,md}": [
"npm run lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zcemycl/webpack-ts-mpa-example.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zcemycl/webpack-ts-mpa-example/issues"
},
"homepage": "https://github.com/zcemycl/webpack-ts-mpa-example#readme",
"devDependencies": {
"@aws-sdk/client-cognito-identity": "^3.259.0",
"@aws-sdk/client-cognito-identity-provider": "^3.259.0",
"@babel/core": "^7.19.0",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/preset-env": "^7.19.0",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.0.0",
"@types/dat.gui": "^0.7.7",
"@types/express": "^4.17.15",
"@types/file-loader": "^5.0.1",
"@types/jest": "^29.0.0",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.11.18",
"@types/puppeteer": "^5.4.6",
"@types/supertest": "^2.0.12",
"@types/three": "^0.147.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"aws-sdk": "^2.1303.0",
"babel-jest": "^29.0.0",
"babel-loader": "^9.1.2",
"babel-preset-jest": "^29.0.0",
"bootstrap": "^5.3.0-alpha1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.1.0",
"cypress": "^12.2.0",
"dat.gui": "^0.7.9",
"dompurify": "^2.4.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.31.0",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-minimizer-webpack-plugin": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"jest-extended": "^3.1.0",
"jest-puppeteer": "^6.1.1",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^13.1.0",
"lite-server": "^2.6.1",
"mini-css-extract-plugin": "^2.7.2",
"nodemon": "^2.0.20",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"prettier": "^2.8.1",
"puppeteer": "^17.1.3",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"supertest": "^6.2.4",
"three": "^0.148.0",
"ts-jest": "^29.0.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@types/grecaptcha": "^3.0.4",
"amazon-cognito-identity-js": "^6.1.2",
"dotenv": "^16.0.3",
"run": "^1.4.0",
"tsdom": "^0.6.9"
}
}