-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "knn",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"startProd": "cross-var next start -p $PORT",
"lint": "eslint",
"test": "jest --watch --runInBand",
"test:ci": "jest --ci --coverage --silent"
},
"dependencies": {
"cross-var": "^1.1.0",
"formik": "^2.2.9",
"next": "11.1.0",
"ramda": "^0.27.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/ramda": "types/npm-ramda#dist",
"@types/react": "17.0.19",
"@types/styled-components": "^5.1.13",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-jest": "^27.1.0",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-unused-imports": "^1.1.4",
"husky": "4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.1.0",
"lint-staged": "^11.1.2",
"prettier": "2.3.2",
"ts-node": "^10.2.1",
"typescript": "4.3.5"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,html}": [
"prettier --write",
"eslint --fix src/"
]
}
}