-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "mermaid-live-editor",
"version": "0.2.0",
"license": "MIT",
"scripts": {
"test": "standard && jest",
"test:watch": "yarn test --watch",
"dev": "parcel ./index.html -d build",
"release": "parcel build ./index.html -d docs --public-url ./"
},
"dependencies": {
"@fortawesome/fontawesome-free-webfonts": "^1.0.9",
"antd": "^3.11.2",
"d3": "^5.7.0",
"dagre-d3-renderer": "^0.5.8",
"dagre-layout": "^0.8.8",
"graphlibrary": "^2.2.0",
"he": "^1.2.0",
"js-base64": "^2.5.0",
"lodash": "^4.17.11",
"mermaid": "^8.4.2",
"minify": "^4.1.1",
"moment": "^2.23.0",
"moment-mini": "^2.22.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"scope-css": "^1.2.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"husky": "^1.2.1",
"jest": "^23.6.0",
"parcel-bundler": "^1.11.0",
"standard": "^12.0.1",
"yarn-upgrade-all": "^0.5.0"
},
"standard": {
"ignore": [
"*.bundle.js",
"docs/"
]
},
"husky": {
"hooks": {
"pre-push": "yarn test"
}
}
}