-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·92 lines (92 loc) · 2.87 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "sparrow-reference-web-app",
"license": "MIT",
"private": true,
"scripts": {
"genv": "./generate-dotenv.sh | tee .env.production.local",
"dev": "yarn && next dev -p 4000",
"build": "yarn genv; yarn prisma:generate; next build",
"start": "next start",
"lint": "next lint",
"lint:all": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"cypress:open": "cypress install && cypress open --env configFile=development",
"cypress:run": "cypress install && cypress run --env configFile=development",
"prisma:generate": "prisma generate",
"db:reset": "prisma db push --force-reset",
"db:update": "prisma db push",
"db:init": "ts-node --project ./node.tsconfig.json src/services/prisma-datastore/db-init.ts"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@prisma/client": "^3.13.0",
"@types/lodash": "^4.14.178",
"@types/react-slick": "^0.23.8",
"antd": "^4.19.1",
"axios": "^0.24.0",
"chart.js": "^3.6.1",
"chartjs-adapter-date-fns": "^2.0.0",
"date-fns": "^2.27.0",
"http-status-codes": "^2.2.0",
"lodash": "^4.17.21",
"next": "12.1.0",
"next-plugin-antd-less": "^1.8.0",
"pony-cause": "^1.1.1",
"prisma": "^3.13.0",
"rc-field-form": "^1.22.0",
"react": "17.0.2",
"react-chartjs-2": "^4.0.0",
"react-dom": "17.0.2",
"react-query": "^3.39.2",
"sass": "^1.43.4",
"ts-node": "^10.5.0"
},
"devDependencies": {
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/node": "16.11.9",
"@types/react": "17.0.35",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"axios-mock-adapter": "^1.20.0",
"babel-jest": "^27.3.1",
"cypress": "9.2.1",
"eslint": "<8.0.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-dom": "^4.0.0",
"node-mocks-http": "^1.11.0",
"prettier": "^2.4.1",
"react-test-renderer": "^17.0.2",
"typescript": "4.5.2"
},
"resolutions": {
"nanoid": "^3.1.31",
"follow-redirects": "^1.14.9",
"node-fetch": "^2.6.7",
"simple-get": "^3.1.1",
"node-forge": "^1.3.0",
"minimist": "^1.2.6",
"undici": "5.8.2"
},
"volta": {
"node": "16.13.0",
"yarn": "1.22.17"
},
"prisma": {
"schema": "src/services/prisma-datastore/schema.prisma"
}
}