-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "vgraph-wip",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html"
},
"dependencies": {
"canvas-text-wrapper": "github:cyberj/canvas-text-wrapper#master",
"eventemitter3": "^5.0.1",
"meyda": "4.2.0",
"randomcolor": "^0.6.2",
"uuid": "9.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"babel-eslint": "^10.0.2",
"babel-preset-env": "^1.7.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": ">=1",
"import-url": "^2.0.1",
"lint-staged": ">=8",
"parcel-bundler": "^1.6.1",
"postcss": ">=6 <9",
"postcss-import-url": "^4.0.0",
"prettier": "^1.18.2"
},
"keywords": [],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}