-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.98 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
{
"name": "prettier-ast-explorer",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server",
"build": "NODE_ENV=production webpack",
"format": "prettier --write \"**/*.{js,ts,tsx,md,json,yaml,html,webmanifest}\"",
"lint": "eslint . --ext .ts --ext .tsx"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{md,css,yaml,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/loadable__component": "^5.10.0",
"@types/prettier": "^1.18.2",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-json-tree": "^0.6.11",
"@types/styled-components": "^4.1.18",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.3.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.5",
"lint-staged": "^9.3.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.1.0",
"ts-loader": "^6.0.4",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0",
"workbox-webpack-plugin": "^4.3.1",
"worker-loader": "^2.0.0",
"worker-plugin": "^3.2.0"
},
"dependencies": {
"@loadable/component": "^5.10.2",
"comlink": "^4.0.2",
"normalize.css": "^8.0.1",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-ace": "^7.0.4",
"react-dom": "^16.9.0",
"react-json-tree": "^0.11.2",
"styled-components": "^4.3.2"
}
}