forked from techiedarren/unofficial-dynamic-content-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.53 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
{
"name": "unofficial-dynamic-content-ui",
"version": "0.7.0",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "Apache-2.0",
"keywords": [
"Dynamic Content",
"Headless CMS"
],
"scripts": {
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" --write",
"fix:tslint": "tslint --fix --project .",
"start": "react-scripts start",
"build": "run-s clean build-ts build-copy-img",
"build-ts": "tsc -p tsconfig.json",
"build-copy-img": "copyfiles -u 1 src/**/*.png dist",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"clean": "trash dist",
"version:patch": "standard-version",
"version:minor": "standard-version --release-as minor",
"version:major": "standard-version --release-as major",
"reset": "git clean -dfx && git reset --hard && npm i",
"all": "run-s reset build test",
"prepare": "run-s clean build-ts build-copy-img",
"prepare-patch-release": "run-s all version:patch",
"prepare-minor-release": "run-s all version:minor",
"prepare-major-release": "run-s all version:major"
},
"dependencies": {
"@material-ui/core": "^4.5.1",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.39",
"@material-ui/styles": "^4.5.1",
"@material/react-material-icon": "^0.15.0",
"@syncfusion/ej2-react-navigations": "^17.3.27",
"@types/node": "12.7.2",
"@types/react": "16.9.2",
"@types/react-color": "^3.0.6",
"@types/react-dom": "16.8.5",
"ajv": "^6.10.2",
"clsx": "^1.0.4",
"copyfiles": "^2.1.1",
"dc-delivery-sdk-js": "^0.3.0",
"dc-extensions-sdk": "^1.2.0",
"material-ui-popup-state": "^2.0.0",
"rc-tree": "^3.0.0-rc.1",
"react": "^16.9.0",
"react-color": "^2.19.3",
"react-dom": "^16.9.0",
"react-scripts": "^3.2.0",
"use-debounce": "^3.3.0"
},
"devDependencies": {
"@storybook/addon-actions": "^5.1.11",
"@storybook/addon-info": "^5.1.11",
"@storybook/addon-links": "^5.1.11",
"@storybook/addons": "^5.1.11",
"@storybook/react": "^5.1.11",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.4",
"standard-version": "^8.0.1",
"trash-cli": "^1.4.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"typescript": "3.5.3",
"awesome-typescript-loader": "^5.2.1",
"react-docgen-typescript-loader": "^3.1.1"
}
}