-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "web-prototype",
"version": "0.0.1",
"description": "Prototypes for new website components in React",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --hot",
"build": "webpack --mode development",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EBIvariation/web-prototype.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"babel-loader": "^8.0.2",
"css-loader": "^6.7.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"msw": "^1.0.0",
"style-loader": "^0.23.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"lodash": "^4.17.21",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11"
}
}