-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.03 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
{
"name": "your-stories",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"apollo:download-schema": "apollo client:download-schema schema.graphql",
"apollo:generate-types": "rm -rf __generated__ && apollo client:codegen --target typescript --outputFlat",
"apollo:sync": "npm run apollo:download-schema && npm run apollo:generate-types",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"cypress:open": "cypress open",
"cypress:run": "cypress run --config video=false",
"cypress:test": "start-server-and-test start http://localhost:3000 cypress:run",
"c": "git add . && git commit -m "
},
"dependencies": {
"@apollo/client": "^3.3.7",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.7",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"firebase": "^9.6.10",
"framer-motion": "^6.2.8",
"graphql": "^15.4.0",
"markdown-to-jsx": "^7.1.7",
"moment": "^2.29.2",
"next": "12.0.7",
"next-compose-plugins": "^2.2.1",
"nextjs-progressbar": "^0.0.14",
"prettier": "^2.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-query": "^3.5.16",
"react-use": "^15.3.8",
"recoil": "^0.1.2",
"sass": "^1.32.5"
},
"devDependencies": {
"@types/node": "^14.14.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/recoil": "0.0.1",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"apollo": "^2.32.1",
"cypress": "^6.2.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"start-server-and-test": "^1.11.0",
"typescript": "^4.1.3"
}
}