-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.63 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
{
"name": "hyper-autocomplete",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"keywords": [
"hyper",
"hyper.app",
"hyper-plugin"
],
"scripts": {
"start": "babel src --out-dir dist --extensions \".ts,.tsx\" --watch",
"build": "webpack --watch --progress --mode=development",
"build-prod": "webpack",
"test": "jest --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/react-redux": "^7.1.7",
"@types/strip-ansi": "^5.2.1",
"color": "^3.0.0",
"fs-extra": "^8.1.0",
"fuse.js": "^3.4.6",
"klaw": "^3.0.0",
"react": "^16.12.0",
"strip-ansi": "^6.0.0",
"vscode-icons": "ssh://git@github.com:vscode-icons/vscode-icons.git#9.7.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-rc.2",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-rc.2",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.0.0-rc.2",
"@babel/preset-typescript": "^7.0.0-rc.2",
"@svgr/webpack": "^5.1.0",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^25.1.2",
"@types/klaw": "^3.0.0",
"@types/node": "^13.5.3",
"@types/react": "^16.4.11",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^25.1.0",
"prettier": "^1.14.2",
"ts-loader": "^6.2.1",
"typescript": "^3.0.1",
"webpack": "^5.0.0-beta.13",
"webpack-cli": "^3.3.11"
}
}