This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
forked from entr-engineering/interview-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "planned-test-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.13",
"npm": ">=8.1.2"
},
"scripts": {
"start": "npm-run-all --parallel start:client start:server",
"start:client": "react-scripts start",
"start:server": "node server/server.mjs",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.tsx --fix"
},
"dependencies": {
"@faker-js/faker": "^6.2.0",
"@tailwindcss/forms": "^0.5.0",
"clsx": "^1.1.1",
"fastify": "^3.28.0",
"fastify-cors": "^6.0.3",
"formik": "^2.2.9",
"lodash-es": "^4.17.21",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "5.0.1",
"swr": "^1.3.0",
"tailwind-merge": "^1.2.1",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "^17.0.29",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"autoprefixer": "^10.4.5",
"cssnano": "^5.1.7",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"npm-run-all": "^4.1.5",
"postcss-import": "^14.1.0",
"postcss-sorting": "^7.0.1",
"prettier": "^2.6.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}