-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
41
42
43
44
45
46
47
48
49
{
"name": "nextjs-with-typescript",
"version": "4.0.0",
"private": true,
"main": "function.js",
"scripts": {
"dev": "next",
"build": "next build",
"build:staging": "APP_ENV=staging next build",
"start": "next start",
"start:staging": "APP_ENV=staging next start",
"prettier-format": "prettier --config .prettierrc 'src/**/*.(ts|tsx|js|jsx)' --write",
"lint": "eslint '*/**/*.{ts,tsx,js,jsx}'",
"lint-staged": "lint-staged",
"test": "jest --watchAll=false",
"coverage": "jest --coverage --coverageReporters=lcov --watchAll=false",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest"
},
"dependencies": {
"@4us-dev/crypto": "^0.0.3",
"@4us-dev/utils": "^0.0.10",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"clsx": "^1.1.1",
"next": "^12.1.0",
"next-pwa": "^5.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"swr": "^1.2.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"prettier": "^2.1.2",
"ts-jest": "^27.1.3",
"typescript": "^4.0.3"
}
}