-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
102 lines (102 loc) · 2.77 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
{
"private": true,
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "concurrently --kill-others 'yarn:start:tsc' 'yarn:start:parcel'",
"start:parcel": "parcel watch ./client/index.html",
"start:tsc": "tsc -p . --noEmit --watch",
"build": "NODE_ENV=production parcel build ./client/index.html",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write ./client/**/*.{ts,tsx,html,scss,json}",
"test": "jest",
"test:watch": "jest --watch"
},
"targets": {
"default": {
"distDir": "./build/client",
"publicUrl": "./assets"
}
},
"dependencies": {
"@ant-design/icons": "^4.x",
"antd": "^4.16.9",
"classnames": "^2.2.6",
"codemirror": "^5.55.0",
"dayjs": "^1.8.28",
"fp-ts": "^2.6.7",
"http-status-codes": "^2.1.4",
"io-ts": "^2.2.7",
"js-yaml": "^3.13.1",
"lodash": "^4.17.19",
"lodash.debounce": "^4.0.8",
"mermaid": "^8.5.2",
"react": "^16.10.2",
"react-codemirror2": "^7.2.1",
"react-dom": "^16.10.2",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-use-localstorage": "^3.4.3",
"redux": "^4.0.4",
"redux-observable": "^1.2.0",
"rxjs": "^6.5.3",
"typesafe-actions": "^5.1.0",
"use-lodash-debounce": "^1.3.0"
},
"devDependencies": {
"@hot-loader/react-dom": "^16.10.2",
"@parcel/transformer-sass": "^2.0.0",
"@types/classnames": "^2.2.9",
"@types/codemirror": "0.0.96",
"@types/jest": "^26.0.3",
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.157",
"@types/mermaid": "^8.2.1",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.2",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.0",
"@types/redux": "^3.6.0",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"axios": "^0.24.0",
"concurrently": "^5.2.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-react": "^7.20.2",
"husky": ">=1",
"jest": "^26.1.0",
"lint-staged": ">=10.2.11",
"parcel": "^2.0.0",
"prettier": "2.0.5",
"react-hot-loader": "^4.12.15",
"redux-devtools-extension": "^2.13.8",
"sass": "^1.26.9",
"ts-jest": "^26.1.1",
"tslib": "^2.3.0",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "16.9.41"
},
"alias": {
"react-dom": "@hot-loader/react-dom"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,html,scss,json}": "prettier --write"
},
"prettier": {
"semi": true,
"singleQuote": false
},
"jest": {
"preset": "ts-jest"
}
}