-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "ecommerce-nextjs-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write **/*.{js,ts,tsx}",
"lint": "eslint . --fix --ext ts --ext tsx --ext js"
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.19.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^4.0.5",
"lodash": "^4.17.15",
"prismjs": "^1.20.0",
"next": "9.4.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"styled-components": "^5.1.1",
"sass": "^1.26.10",
"react-intl": "^4.7.6",
"react-scripts": "^3.4.1",
"typescript": "^3.9.6",
"@atlaskit/css-reset": "^5.0.10",
"styled-icons": "^10.6.0",
"material-ui": "^0.20.2"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/prismjs": "^1.16.1",
"@typescript-eslint/parser": "^3.5.0",
"@types/node": "^14.0.20",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.1",
"typescript": "^3.9.6",
"babel-plugin-styled-components": "^1.10.7",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"eslint-plugin-react": "^7.20.3",
"prettier": "^2.0.5",
"eslint-config-prettier": "^6.11.0",
"babel-jest": "^25.2.3",
"eslint": "^6.8.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"useTabs": true
}
}