-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 959 Bytes
/
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
{
"name": "next-typescript",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3010",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"cypress:open": "cypress open",
"e2etest": "start-server-and-test dev 3010 cypress:open"
},
"dependencies": {
"@apollo/client": "^3.4.7",
"graphql": "^15.5.1",
"next": "11.0.1",
"ra-data-graphql-simple": "^3.13.2",
"react": "17.0.2",
"react-admin": "^3.17.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.0",
"@types/query-string": "^6.3.0",
"@types/react": "17.0.16",
"babel-jest": "^27.0.6",
"cypress": "^8.3.0",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"jest": "^27.0.6",
"start-server-and-test": "^1.13.1",
"typescript": "4.3.5"
}
}