-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "basic-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:next_template": "NEXT_TEMPLATE=1 next dev --port 3001",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --runInBand",
"e2e": "npx playwright test __e2e__"
},
"dependencies": {
"@supabase/supabase-js": "^1.30.7",
"airtable": "^0.11.1",
"autoprefixer": "^10.3.6",
"ethers": "^5.5.1",
"extracted-loader": "^1.0.7",
"file-loader": "^6.2.0",
"ignore-loader": "^0.1.2",
"img-loader": "^4.0.0",
"next": "11.1.2",
"next-compose-plugins": "^2.2.1",
"next-optimized-images": "^2.6.2",
"postcss": "^8.3.8",
"react": "17.0.2",
"react-big-bang-star-field": "^1.0.10",
"react-dom": "17.0.2",
"react-test-renderer": "^17.0.2",
"store2": "^2.13.1",
"supabase": "^0.5.0",
"svgson": "^5.2.1",
"tailwindcss": "^2.2.19",
"url-loader": "^4.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@types/react": "^17.0.27",
"concurrently": "^6.2.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"jest": "^27.2.2",
"light-server": "^2.9.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
}
}