-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.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
{
"name": "counter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"lint": "eslint .",
"lint:fix": "npm run lint --scripts-prepend-node-path -- --fix",
"pretty": "prettier -c . --ignore-path .gitignore",
"pretty:fix": "prettier -w . --ignore-path .gitignore",
"test": "yarn jest"
},
"dependencies": {
"@fontsource/roboto": "^4.5.0",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^2.0.7",
"next": "^12.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-lodash": "^0.1.2",
"sass": "^1.35.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"ceibo": "^2.1.0",
"eslint": "^8.17.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"prettier": "^2.7.1"
}
}