forked from BlankFoundation/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "basic-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --runInBand",
"e2e": "npx playwright test __e2e__",
"test:dashboard": "light-server --serve ./jest-stare -w \"jest-stare/index.html\" -p 3002",
"dev:test": "git init && yarn && concurrently --kill-others 'yarn dev' 'yarn test' 'yarn test:dashboard'"
},
"dependencies": {
"airtable": "^0.11.1",
"autoprefixer": "^10.3.6",
"ethers": "^5.4.7",
"next": "11.1.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",
"tailwindcss": "^2.2.16"
},
"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",
"jest-stare": "^2.3.0",
"light-server": "^2.9.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
}
}