forked from rightmove/remote-front-end-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "fed-test",
"version": "0.2.0",
"private": true,
"dependencies": {
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"express": "^4.17.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"babel-jest": "^28.1.3",
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prop-types": "^15.7.2",
"sass": "^1.53.0",
"vite": "^3.0.0"
},
"scripts": {
"start": "run-p server dev:vite",
"server": "nodemon ./server/index.js",
"dev:vite": "vite",
"test": "jest --watchAll",
"lint": "eslint ."
}
}