-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.22 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": "scribedao",
"description": "Information website for ScribeDAO",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:prod": "next build && next export",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:local": "start-server-and-test dev 3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check src/**/*.{ts,tsx,js,jsx}",
"check-lint": "eslint --ext ts --ext tsx --ext js src/",
"format": "prettier --write src/**/*.{ts,tsx,js,jsx}",
"test": "jest --watch",
"test-all": "npm run check-format && npm run check-lint && npm run check-types",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@heroicons/react": "^1.0.4",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@testing-library/dom": "^8.7.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.2.1",
"@types/testing-library__jest-dom": "^5.14.1",
"@types/jest": "^27.0.2",
"@types/react": "17.0.19",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"autoprefixer": "^10.3.6",
"babel-jest": "^27.2.5",
"cypress": "^8.5.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.26.0",
"husky": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"postcss": "^8.3.8",
"prettier": "2.4.1",
"prettier-config-standard": "^4.0.0",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^2.2.16",
"typescript": "4.4.2"
}
}