-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) ยท 1.7 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": "library",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write \"./components/**\" \"./pages/**\" --ignore-path ./.gitignore",
"lint": "eslint \"./components/**\" \"./pages/**\" --quiet",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@react-hook/window-size": "^3.0.7",
"@tailwindcss/line-clamp": "^0.2.0",
"apollo-server-micro": "^2.19.1",
"autoprefixer": "^10.0.3",
"axios": "^0.21.1",
"framer-motion": "^3.7.0",
"fuse.js": "^6.4.6",
"graphql": "^15.4.0",
"graphql-tools": "^7.0.2",
"mdi-react": "^7.4.0",
"mongoose": "^5.11.11",
"mongoose-unique-validator": "^2.0.3",
"next": "10.0.3",
"next-pwa": "^5.0.6",
"postcss": "^8.1.10",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-infinite-scroll-component": "^6.0.0",
"react-intersection-observer": "^8.31.0",
"sass": "^1.29.0",
"tailwindcss": "^2.0.1"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/mongoose": "^5.10.3",
"@types/mongoose-unique-validator": "^1.0.4",
"@types/node": "^14.14.31",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
"typescript": "^4.1.2"
}
}