This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
129 lines (129 loc) · 4.49 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "diagram-maker",
"description": "A library to display an interactive editor for any graph-like data.",
"version": "2.0.1",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/"
},
"homepage": "https://awslabs.github.io/diagram-maker",
"contributors": [
"Sameer Goyal <[email protected]>",
"Matthew Oakes <[email protected]>"
],
"engines": {
"node": ">=16"
},
"main": "dist/diagramMaker.js",
"types": "dist/diagramMaker.d.ts",
"typings": "dist/diagramMaker.d.ts",
"license": "Apache-2.0",
"keywords": [
"aws",
"visualizaton",
"diagram",
"interactive",
"canvas",
"editor",
"drag",
"drop",
"workflow",
"state-machine",
"flowchart",
"diagram-maker"
],
"dependencies": {},
"devDependencies": {
"@cypress/code-coverage": "^3.9.12",
"@storybook/html": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-storysource": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/theming": "^6.4.19",
"@types/dagre": "^0.7.47",
"@types/enzyme": "^3.10.11",
"@types/jest": "^27.4.0",
"@types/lodash-es": "^4.17.6",
"@types/uuid": "^8.3.4",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"babel-plugin-istanbul": "^6.1.1",
"bundle-declarations-webpack-plugin": "^2.2.2",
"classnames": "^2.3.1",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"cypress": "^9.4.1",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^3.3.0",
"enzyme-to-json": "^3.6.2",
"es6-shim": "^0.35.6",
"eslint": "^8.8.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-storybook": "^0.5.6",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-jest": "^26.1.0",
"fork-ts-checker-webpack-plugin": "^7.1.1",
"html-webpack-plugin": "^5.5.0",
"immer": "^9.0.12",
"jest": "^27.5.0",
"jest-snapshot": "^27.5.0",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.5.3",
"postcss": "^8.4.6",
"postcss-loader": "^6.2.1",
"postcss-scss": "^4.0.3",
"preact": "^10.6.5",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-undo-redo": "^2.1.1",
"sass": "^1.49.7",
"sass-loader": "^12.4.0",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"typedoc": "^0.22.11",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.5.5",
"uuid": "^8.3.2",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"optionalDependencies": {
"dagre": "^0.8.5"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"clean": "rm -rf ./coverage && rm -rf ./dist && rm -rf ./docs",
"documentation": "typedoc --gitRemote upstream --gitRevision master",
"start": "start-storybook -p 31213",
"server": "npm run start",
"lint": "eslint --ext .js,.ts,.tsx src/",
"lint:fix": "eslint --ext .js,.ts,.tsx src/ --fix",
"test": "tsc --noEmit -p . && jest --config jest.json",
"test:dev": "tsc --noEmit -p . && jest --config jest.json --watch",
"test:update": "tsc --noEmit -p . && jest --config jest.json --updateSnapshot",
"release": "npm run lint && npm run test && npm run build && npm run release:integ && npm run documentation",
"build:integ": "build-storybook -o docs/",
"lint:integ": "npx eslint --ext .js,.ts,.tsx integ/ -c integ/.eslintrc && eslint --ext .js,.ts,.tsx cypress/tests/ -c cypress/.eslintrc",
"lint:integ:fix": "npx eslint --ext .js,.ts,.tsx integ/ -c integ/.eslintrc --fix && eslint --ext .js,.ts,.tsx cypress/tests/ -c cypress/.eslintrc --fix",
"test:integ": "npm run build:integ && tsc --noEmit -p ./cypress && cypress run --env coverage=true",
"test:integ:dev": "tsc --noEmit -p ./cypress && cypress open --config baseUrl=http://localhost:31213 --env coverage=true",
"release:integ": "npm run lint:integ && npm run test:integ",
"prepublishOnly": "npm run clean && npm run release"
},
"repository": {
"type": "git",
"url": "git://github.com/awslabs/diagram-maker"
}
}