-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.96 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
{
"name": "emotion-bugs",
"version": "1.0.0",
"author": "neefrehman",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --verbose",
"test:watch": "jest —-watch",
"test:coverage": "jest --coverage",
"format": "prettier \"src/**/*.{js,ts,tsx}\"",
"format:fix": "prettier \"src/**/*.{js,ts,tsx}\" --write",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" --fix",
"typecheck": "tsc"
},
"dependencies": {
"@emotion/jest": "^11.1.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@testing-library/react": "^11.2.5",
"next": "^10.0.6",
"react": "17.0.1",
"react-dom": "17.0.1",
"stylis": "^4.0.7"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@emotion/babel-plugin": "^11.1.2",
"@emotion/eslint-plugin": "^11.0.0",
"@storybook/react": "^6.1.17",
"@testing-library/jest-dom": "^5.11.9",
"@types/node": "^14.14.25",
"@types/prettier": "^2.2.0",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-loader": "^8.2.2",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3",
"url-loader": "^4.1.1"
}
}