-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.66 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
{
"name": "windows-of-change",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"eslint": "eslint src --ext .ts,.tsx",
"eslint:fix": "eslint src --ext .ts,.tsx --fix",
"lint": "yarn prettier && yarn eslint",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"prepare": "husky install",
"prettier": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"update": "yarn run npm-check-updates -u"
},
"lint-staged": {
"*.{js,json,ts,tsx,yaml}": "prettier --write"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@types/d3": "^7.1.0",
"@types/styled-components": "^5.1.20",
"d3": "^7.3.0",
"lodash": "^4.17.21",
"next": "^12.0.8",
"react": "^17.0.2",
"react-dnd": "^14.0.5",
"react-dnd-html5-backend": "^14.1.0",
"react-dom": "^17.0.2",
"remark-gfm": "^3.0.1",
"sass": "^1.48.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"enzyme": "^3.11.0",
"eslint": "8.7.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"react-markdown": "^7.1.2",
"typescript": "^4.5.4"
},
"resolutions": {
"elliptic": "^6.5.4"
}
}