-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.57 KB
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
{
"name": "hangman-front",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p -l type-check:watch start:dev",
"start:dev": "webpack serve --config ./config/webpack/dev.js",
"build": "run-p -l type-check build:prod",
"build:prod": "npm run clean && webpack --config ./config/webpack/prod.js",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"clean": "rimraf dist",
"test": "jest -c ./config/test/jest.js",
"test:watch": "npm run test -- --watchAll -i"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^27.5.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"babel-loader": "^8.2.5",
"dotenv-webpack": "^8.0.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"npm-run-all": "^4.1.5",
"react-refresh": "^0.14.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}