-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 KB
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
{
"name": "ui-playground",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"check-types": "tsc --noEmit --pretty",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext .js",
"format": "prettier --write .",
"test-all": "yarn run check-format && yarn run check-lint && yarn run check-types && yarn run format && yarn run build"
},
"dependencies": {
"@apollo/client": "^3.6.5",
"graphql": "^16.5.0",
"next": "12.1.6",
"prettier": "^2.6.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": ">=5.16.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.0",
"husky": "^8.0.0",
"typescript": "^4.6.4"
}
}