-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.81 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.81 KB
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
{
"name": "tabverse",
"version": "0.5.0",
"description": "Tabverse is an opinionated tab manager for Chrome browser.",
"scripts": {
"test": "jest --coverage",
"prebuild": "./tools/copycss.sh",
"build": "./tools/build.sh",
"build-doc": "./tools/builddoc.sh",
"build-crx": "./tools/buildcrx.sh",
"develop": "./tools/copycss.sh; ./tools/develop.sh",
"react-devtools": "react-devtools",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"depcheck": "depcheck"
},
"keywords": [],
"author": "Yu Li",
"license": "MIT License",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@blueprintjs/core": "^4.6.0",
"@blueprintjs/icons": "^4.3.1",
"@blueprintjs/popover2": "^1.4.2",
"@fortawesome/fontawesome-free": "^6.1.1",
"@types/chrome": "0.0.193",
"@types/crypto-js": "^4.1.1",
"@types/draft-js": "^0.11.9",
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.182",
"@types/natural": "^5.1.1",
"@types/pubsub-js": "^1.8.3",
"@types/react": "^16.7.8",
"@types/react-dom": "^16.0.11",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"broadcast-channel": "^4.13.0",
"clean-webpack-plugin": "^4.0.0",
"clsx": "^1.2.1",
"crypto-js": "^4.1.1",
"css-loader": "^6.7.1",
"depcheck": "^1.4.3",
"dexie": "^3.2.2",
"dexie-observable": "^3.0.0-beta.11",
"draft-js": "^0.11.7",
"dropbox": "^10.31.0",
"effector": "^22.3.0",
"effector-react": "^22.0.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-webpack-plugin": "^3.2.0",
"fake-indexeddb": "^3.1.7",
"immer": "^9.0.15",
"immutable": "~3.7.4",
"jest": "^28.1.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"moment": "^2.29.4",
"nanoid": "^3.1.31",
"node-polyfill-webpack-plugin": "^1.1.4",
"normalize.css": "^8.0.1",
"prettier": "^2.7.1",
"pubsub-js": "^1.9.4",
"react": "^17.0.2",
"react-devtools": "^4.24.7",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"react-transition-group": "^4.4.2",
"replace-in-file": "^6.3.5",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"simplebar-react": "^2.4.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0",
"webpack-strip-block": "^0.3.0"
}
}