-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.72 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
{
"name": "parlio-frontend",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/parlio-nl/parlio-frontend.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir .",
"c": "yarn fmt:check && yarn relay:validate && yarn lint && yarn tsc --noEmit && yarn test",
"relay": "relay-compiler",
"relay:watch": "relay-compiler --watch",
"relay:validate": "relay-compiler --validate",
"fmt": "yarn prettier --write .",
"fmt:check": "yarn prettier --check .",
"fmt:ci": "yarn prettier --check --loglevel debug .",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"gw:intro": "rover graph introspect http://localhost:4000/graphql > data/schema.graphql"
},
"dependencies": {
"@popperjs/core": "2.11.5",
"bootstrap": "5.1.3",
"bootstrap-icons": "1.8.1",
"graphql": "16.3.0",
"next": "12.1.4",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-relay": "13.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.0.0",
"@types/bootstrap": "5.1.9",
"@types/node": "17.0.23",
"@types/react": "18.0.0",
"@types/react-relay": "13.0.2",
"@types/relay-runtime": "13.0.3",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"eslint": "8.13.0",
"eslint-config-next": "12.1.4",
"eslint-plugin-jest": "26.1.4",
"eslint-plugin-jest-dom": "4.0.1",
"eslint-plugin-testing-library": "5.2.1",
"jest": "27.5.1",
"prettier": "2.6.2",
"relay-compiler": "13.2.0",
"typescript": "4.6.3"
}
}