-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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": "solrang",
"private": true,
"scripts": {
"build": "npx prisma generate && next build",
"dev": "next dev",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"start": "next start"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.6.2",
"@prisma/client": "3.7.0",
"lodash.throttle": "^4.1.1",
"next": "12.0.7",
"normalize.css": "^8.0.1",
"prisma": "^3.7.0",
"react": "17.0.2",
"react-dom": "^17.0.2",
"react-transition-group": "^4.4.2",
"scryfall-sdk": "^2.1.1",
"styled-components": "^5.3.3",
"styled-icons": "^10.45.0",
"superjson": "^1.8.0",
"swr": "^1.1.2"
},
"devDependencies": {
"@types/lodash.throttle": "^4.1.6",
"@types/node": "17.0.5",
"@types/react": "17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-transition-group": "^4.4.4",
"@types/styled-components": "^5.1.19",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-plugin-styled-components": "^2.0.2",
"babel-plugin-superjson-next": "^0.4.2",
"eslint": "^8.5.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-pkg": "^0.11.1",
"typescript": "4.5.4"
},
"compilerOptions": {
"sourceMap": true,
"outDir": "dist",
"strict": true,
"lib": [
"esnext"
],
"esModuleInterop": true
}
}