forked from projectstorm/react-diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.46 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "storm-react-diagrams",
"version": "5.2.1",
"repository": {
"type": "git",
"url": "https://github.com/projectstorm/react-diagrams.git"
},
"keywords": [
"web",
"diagram",
"diagrams",
"react",
"typescript",
"flowchart",
"simple",
"links",
"nodes"
],
"main": "./dist/main.js",
"typings": "./dist/@types/src/main",
"author": "dylanvorster",
"scripts": {
"build:ts": "webpack",
"build:ts:prod": "cross-env NODE_ENV=production webpack",
"build:sass:prod": "node-sass --output-style compressed ./src/sass/main.scss > ./dist/style.min.css",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o .out",
"storybook:github": "storybook-to-ghpages",
"pretty": "prettier --use-tabs --write \"{src,demos,tests}/**/*.{ts,tsx}\" --print-width 120",
"lint": "tslint -p .",
"test:ci": "rm -rf ./dist && node ./tests/e2e/generate-e2e.js && jest --no-cache",
"test": "jest --no-cache",
"prepublishOnly": "yarn run build:ts:prod && yarn run build:sass:prod"
},
"dependencies": {
"closest": "^0.0.1",
"lodash": "^4.17.10",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.7",
"react": "^16.3.2"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.3",
"@storybook/addon-options": "^3.4.3",
"@storybook/addon-storyshots": "^3.4.3",
"@storybook/addons": "^3.4.3",
"@storybook/react": "^3.4.3",
"@storybook/storybook-deployer": "^2.3.0",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.108",
"@types/node": "^10.0.4",
"@types/promise": "^7.1.30",
"@types/puppeteer": "^1.3.1",
"@types/react": "^16.3.13",
"awesome-typescript-loader": "4",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"dagre": "^0.8.2",
"enzyme": "^3.3.0",
"file-loader": "^1.1.11",
"glob": "^7.1.2",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"json-beautify": "^1.0.1",
"node-sass": "^4.9.0",
"prettier": "^1.12.1",
"puppeteer": "^1.3.0",
"raf": "^3.4.0",
"raw-loader": "^0.5.1",
"react-dom": "^16.3.2",
"react-syntax-highlighter": "^7.0.4",
"react-test-renderer": "^16.3.2",
"sass-loader": "^7.0.1",
"source-map-loader": "^0.2.3",
"storybook-host": "^4.1.5",
"storybook-readme": "^3.3.0",
"style-loader": "^0.21.0",
"ts-jest": "^22.4.4",
"ts-loader": "^4.2.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"val-loader": "^1.1.0",
"webpack": "^4.7.0",
"webpack-cli": "^2.1.2"
}
}