forked from playcanvas/pcui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.34 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": "@playcanvas/pcui",
"version": "1.1.22",
"author": "PlayCanvas <[email protected]>",
"homepage": "https://playcanvas.github.io/pcui",
"description": "This library enables the creation of reliable and visually pleasing user interfaces by providing fully styled components that you can use directly on your site. The components are useful in a wide range of use cases, from creating simple forms to building graphical user interfaces for complex web tools.",
"license": "MIT",
"main": "pcui.js",
"bugs": {
"url": "https://github.com/playcanvas/pcui/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playcanvas/pcui.git"
},
"scripts": {
"build": "webpack --config webpack.config.js && cross-env MODULE=true webpack --config webpack.config.js",
"watch": "ENVIRONMENT=development webpack --config webpack.config.js --watch",
"lint": "eslint --ext .js src",
"lintfix": "eslint --ext .js src --fix",
"storybook": "jsdoc -r -X src > ./.storybook/utils/jsdoc-ast.json && start-storybook -p 9009 -s public",
"docs:local": "cd docs && bundle exec jekyll build --config _config_local.yml && mkdir _site/storybook && cd .. && ENVIRONMENT=production build-storybook --no-dll -o ./docs/_site/storybook",
"docs:build": "cd docs && bundle exec jekyll build --config _config.yml && mkdir _site/storybook && cd .. && ENVIRONMENT=production build-storybook --no-dll -o ./docs/_site/storybook",
"pcui:publish": "npm run build && npm run tsd && cp ./package.json dist && cp ./LICENSE dist && cp README.md dist && npm publish dist",
"tsd": "jsdoc -c conf-tsd.json && node tsd.js"
},
"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",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
}
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@playcanvas/eslint-config": "^1.0.8",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-backgrounds": "^6.2.9",
"@storybook/addon-controls": "^6.2.9",
"@storybook/addon-docs": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.2.9",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-minimizer-webpack-plugin": "^1.3.0",
"eslint": "^7.25.0",
"html-webpack-plugin": "^5.3.1",
"jsdoc": "^3.6.5",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^1.6.0",
"playcanvas": "^1.41.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-app-rewire-alias": "^0.1.9",
"react-app-rewired": "^2.1.6",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-scripts": "3.4.1",
"sass": "^1.32.12",
"sass-loader": "^9.0.2",
"tsd-jsdoc": "^2.5.0",
"webpack": "~5.36.2",
"webpack-cli": "~4.6.0"
},
"directories": {
"doc": "docs"
}
}