forked from Tying1128/twuc-tdd-frontend-shopping-cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "twuc-tdd-frontend-shopping-cart",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start-server": "mock-json-server __mocks__/data.json",
"start": "webpack serve --hot --open",
"build": "webpack --config webpack.config.js",
"test": "jest",
"lint:check": "eslint src --ext .js,.jsx",
"lint:fix": "eslint src --fix --ext .js,.jsx",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.18.9",
"axios": "^0.27.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.21.0",
"eslint-plugin-react": "^7.30.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mock-json-server": "^1.3.6",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}