-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "fullstack-starterkit",
"version": "0.1.0",
"author": {
"name": "Karan Pratap Singh",
"email": "contact@karanpratapsingh.com",
"url": "https://karanpratapsingh.com"
},
"private": true,
"license": "MIT",
"description": "Starter kit for Full Stack projects that scales",
"repository": {
"type": "git",
"url": "git+https://github.com/karanpratapsingh/fullstack-starterkit.git"
},
"bugs": {
"url": "https://github.com/karanpratapsingh/fullstack-starterkit/issues"
},
"scripts": {
"lint": "yarn eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn prettier --write . && yarn lint --fix",
"e2e": "yarn cypress open",
"postinstall": "cd web && yarn && cd ../backend && yarn && cd .."
},
"devDependencies": {
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"cypress": "7.4.0",
"eslint": "7.27.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"husky": "6.0.0",
"prettier": "2.3.0",
"typescript": "4.3.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint:fix"
}
},
"volta": {
"node": "14.18.0",
"yarn": "1.22.10"
}
}