-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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": "snapdown",
"version": "1.0.0",
"private": true,
"description": "Draw snapshot diagrams with plain text",
"homepage": "https://snapdown.csail.mit.edu/",
"repository": "github:uid/snapdown",
"license": "MIT",
"author": "Max Goldman <[email protected]>",
"contributors": [
"Aaron Zeng <[email protected]>",
"Daniel Whatley <[email protected]>"
],
"scripts": {
"gen-parser": "node -p 'require(\"./src/snapdown.peg.js\")' | pegjs -o dist/snapdown-parser.js",
"test": "bash precompile-hook.sh && npm run gen-parser && mocha",
"build": "bash precompile-hook.sh && npm run gen-parser && webpack --mode production",
"start": "bash precompile-hook.sh && npm run gen-parser && webpack -w --mode development",
"lint": "pretty-quick --staged --no-restage --bail"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"babel-cli": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.2",
"fs": "0.0.1-security",
"jquery": "^3.5.1",
"pathfinding": "^0.4.18",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-html-parser": "^2.0.2",
"save-svg-as-png": "^1.4.17"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"elkjs": "^0.6.2",
"husky": "^4.2.5",
"mocha": "^5.2.0",
"pegjs": "^0.10.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"yaml-front-matter": "^4.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}