-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 3.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "move.it",
"version": "0.1.0",
"private": true,
"author": "Renan Pereira <renanmol87@gmail.com>",
"keywords": [
"exercise",
"move",
"focus",
"pomodoro"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/r3nanp/move.it.git"
},
"bugs": {
"url": "https://github.com/r3nanp/move.it/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --max-warnings=0",
"postinstall": "husky install",
"seed": "prisma db seed",
"migrate": "prisma migrate dev",
"migrate:run": "prisma migrate deploy",
"test": "jest --maxWorkers=25%",
"test:ci": "jest --runInBand",
"test:watch": "jest --watch --maxWorkers=15%",
"typecheck": "tsc --noEmit --project tsconfig.json",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s ./public"
},
"dependencies": {
"@prisma/client": "^3.8.1",
"axios": "^0.25.0",
"next": "^12.0.8",
"next-auth": "^3.5.0",
"next-pwa": "^5.2.24",
"nookies": "^2.5.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.2.0",
"scheduler": "^0.20.2",
"storybook": "^6.3.5",
"storybook-addon-next-router": "^3.0.5",
"styled-components": "^5.2.1",
"use-context-selector": "^1.3.7",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@storybook/addon-actions": "^6.3.5",
"@storybook/addon-essentials": "^6.3.5",
"@storybook/addon-links": "^6.3.5",
"@storybook/react": "^6.3.5",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/next-auth": "^3.1.24",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.20.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest-dom": "^3.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.2",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^12.1.7",
"prettier": "^2.2.1",
"prisma": "^3.8.1",
"ts-jest": "^26.5.4",
"ts-node": "^10.4.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"yarn lint",
"yarn test --bail --findRelatedTests"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} src/backend/seeds/challenges-seed.ts"
}
}