-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.16 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
{
"name": "luck-ui-landing-page",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"develop": "nodemon --exec ts-node server/server.ts",
"build": "next build",
"start": "next start -p 3000",
"codegen": "graphql-codegen --config codegen.yml",
"lint": "next lint",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@apollo/client": "3.8.7",
"@rehooks/component-size": "1.0.3",
"@rollbar/react": "0.11.2",
"axios": "0.27.2",
"deepmerge": "4.3.1",
"dotenv": "16.3.1",
"dotenv-webpack": "8.0.1",
"graphql": "16.8.1",
"lodash.isequal": "4.5.0",
"next": "12.2.5",
"next-ga": "2.3.4",
"next-seo": "5.15.0",
"nodemon": "2.0.22",
"react": "18.2.0",
"react-autosize-textarea": "7.1.0",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.2.0",
"react-masonry-css": "1.0.16",
"react-table": "7.8.0",
"rehype-raw": "6.1.1",
"rehype-react": "7.2.0",
"remark-parse": "10.0.2",
"remark-rehype": "10.1.0",
"remark-slug": "7.0.1",
"rooks": "6.4.3",
"styled-components": "5.3.11",
"styled-components-modifiers": "1.2.5",
"styled-media-query": "2.1.2",
"styled-system": "5.1.5",
"ts-node": "10.9.1",
"unified": "10.1.2"
},
"devDependencies": {
"@svgr/webpack": "6.5.1",
"@types/axios": "0.14.0",
"@types/lodash.isequal": "4.5.7",
"@types/node": "18.7.8",
"@types/react": "18.0.17",
"@types/react-copy-to-clipboard": "5.0.6",
"@types/react-dom": "18.0.6",
"@types/styled-components": "5.1.29",
"@types/styled-system": "5.1.20",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"overrides": {
"styled-components-modifiers": {
"styled-components": "5.3.11"
},
"react-autosize-textarea": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"next-ga": {
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0"
}
},
"engines": {
"node": "16.17.0",
"npm": "8.15.0"
}
}