-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
{
"name": "feathers-debugger",
"version": "1.3.2",
"description": "FeathersJS Debugger Chrome Extension",
"main": "src/index.html",
"scripts": {
"dev": "parcel src/devtools.html --out-dir build/output --cache-dir build/cache src/popup.html --port 3000",
"build": "export NODE_ENV=production && parcel --cache-dir build/cache --no-source-maps build src/devtools.html src/popup.html src/index.html -d dist --public-url ./",
"lint": "eslint ./src",
"depcheck": "depcheck"
},
"keywords": [
"feathers",
"feathersjs",
"feathers-debugger",
"chrome",
"extension"
],
"author": "Dan Radenkovic",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/radenkovic/feathers-debugger.git"
},
"bugs": {
"url": "https://github.com/radenkovic/feathers-debugger/issues",
"email": "dan@radenkovic.org"
},
"dependencies": {
"ms": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-tooltip": "^4.2.8",
"string-to-color": "^2.2.2",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@svgr/parcel-plugin-svgr": "^5.4.0",
"babel-eslint": "^10.1.0",
"depcheck": "^1.2.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"parcel": "^1.12.4",
"parcel-plugin-clean-dist": "^0.0.6",
"parcel-plugin-static-files-copy": "^2.5.0",
"prettier": "^2.0.5"
}
}