-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "detour",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "eslint \"./**/*.{jsx,js,ts,tsx}\"",
"lint:fix": "eslint \"./**/*.{jsx,js,ts,tsx}\" --fix"
},
"dependencies": {
"@apollo/client": "^3.4.15",
"@iarna/toml": "^2.2.5",
"@vercel/fetch": "^6.1.1",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"classnames": "^2.3.1",
"cors": "^2.8.5",
"graphql": "^15.6.0",
"netlify-identity-widget": "^1.9.2",
"next": "11.1.2",
"path": "^0.12.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-table": "^7.7.0",
"react-use": "^17.3.1",
"sass": "^1.44.0",
"swr": "^1.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@types/atob": "^2.1.2",
"@types/btoa": "^1.2.3",
"@types/cors": "^2.8.12",
"@types/netlify-identity-widget": "^1.9.2",
"@types/react": "^17.0.37",
"@types/react-table": "^7.7.9",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"autoprefixer": "^10.4.0",
"eslint": "7.32.0",
"eslint-config-assemble": "^0.0.4",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-config-assemble": "^0.0.4",
"tailwindcss": "^3.0.2",
"typescript": "^4.5.4"
},
"eslintConfig": {
"extends": [
"eslint-config-assemble"
],
"env": {
"browser": true,
"node": true
}
},
"prettier": "prettier-config-assemble"
}