-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 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
{
"name": "takah.dev",
"version": "0.1.0",
"private": true,
"author": "Luís Takahashi <takahashihideki408@gmail.com>",
"keywords": [
"luis",
"takah",
"takahashi",
"luis.takahashi"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(ts|tsx|json)\"",
"test": "npx jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"validate": "yarn lint && yarn test && yarn build"
},
"dependencies": {
"next": "10.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@testing-library/dom": "^7.29.6",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.0",
"@types/faker": "^5.1.7",
"@types/gtag.js": "^0.0.3",
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-jest": "^26.6.3",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.4.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"prettier": "^2.1.2",
"typescript": "^4.1.0-beta"
}
}