-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.97 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
66
67
68
69
70
71
{
"name": "advisor-list",
"version": "1.0.0",
"private": true,
"description": "This is an application to show advisor list and make some actions with it like sorting and filtering",
"scripts": {
"build": "webpack --mode=production",
"dev:bundler": "webpack -w --mode=development",
"dev:server": "tsnd src/server/server.ts",
"lint:js": "eslint src/**/*{.ts,.tsx}",
"test": "jest --collect-coverage",
"test:watch": "npm run test -- --watch",
"cypress": "cypress open"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/allinne/advisor-list.git"
},
"author": "allinne",
"license": "ISC",
"bugs": {
"url": "https://github.com/allinne/advisor-list/issues"
},
"homepage": "https://github.com/allinne/advisor-list#readme",
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"mongodb": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"cypress": "^12.14.0",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}