-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
127 lines (127 loc) · 3.97 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
{
"name": "@playcanvas/pcui-graph",
"version": "4.0.1",
"author": "PlayCanvas <[email protected]>",
"homepage": "https://github.com/playcanvas/pcui-graph",
"description": "A PCUI plugin for creating node-based graphs",
"keywords": [
"components",
"css",
"dom",
"graph",
"html",
"javascript",
"nodes",
"pcui",
"playcanvas",
"react",
"sass",
"typescript",
"ui"
],
"license": "MIT",
"main": "dist/pcui-graph.js",
"module": "dist/pcui-graph.mjs",
"types": "types/index.d.ts",
"bugs": {
"url": "https://github.com/playcanvas/pcui-graph/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playcanvas/pcui-graph.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c --environment target:all && npm run bundle:styles",
"build:docs": "typedoc",
"build:docsite:local": "cd docs && bundle exec jekyll build --config _config_local.yml && cd .. && npm run build:storybook",
"build:docsite:production": "cd docs && bundle exec jekyll build --config _config.yml && cd .. && npm run build:storybook",
"build:storybook": "cross-env ENVIRONMENT=production storybook build -o ./docs/_site/storybook",
"build:types": "tsc --project ./tsconfig.json --declaration --emitDeclarationOnly --outDir types",
"bundle:styles": "scss-bundle -e ./src/styles/style.scss -o ./dist/pcui-graph.scss",
"lint": "eslint --ext .js src",
"lint:styles": "stylelint src/styles/style.scss",
"serve:docs": "serve docs/_site",
"storybook": "storybook dev",
"watch": "rollup -c --environment target:all --watch",
"watch:umd": "rollup -c --environment target:umd --watch",
"watch:module": "rollup -c --environment target:module --watch"
},
"files": [
"dist/pcui-graph.js",
"dist/pcui-graph.mjs",
"dist/pcui-graph.scss",
"package.json",
"README.md",
"LICENSE",
"styles",
"types"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "@playcanvas/eslint-config"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@playcanvas/eslint-config": "^1.7.1",
"@playcanvas/observer": "^1.4.0",
"@playcanvas/pcui": "^4.1.2",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-actions": "^7.6.10",
"@storybook/addon-backgrounds": "^7.6.10",
"@storybook/addon-controls": "^7.6.10",
"@storybook/addon-docs": "^7.6.10",
"@storybook/addon-links": "^7.6.10",
"@storybook/addons": "^7.6.10",
"@storybook/preset-create-react-app": "^7.6.10",
"@storybook/react": "^7.6.10",
"@storybook/react-webpack5": "^7.6.10",
"@types/react": "^18.2.48",
"babel-loader": "^9.1.3",
"backbone": "^1.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"jointjs": "^3.7.7",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"node-sass": "^9.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"rollup": "^4.9.5",
"rollup-plugin-jscc": "^2.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-postcss": "^4.0.2",
"sass-loader": "^14.0.0",
"scss-bundle": "^3.1.2",
"serve": "^14.2.1",
"storybook": "^7.6.10",
"stylelint": "^16.2.0",
"stylelint-config-standard-scss": "^13.0.0",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-mdn-links": "^3.1.16",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^4.9.5"
},
"directories": {
"doc": "docs"
}
}