@epigraph/configurator 1.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +93 -0
- package/dist/epigraph-configurator.css +2 -0
- package/dist/epigraph-configurator.js +3 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@epigraph/configurator",
|
|
3
|
+
"version": "1.0.0-alpha.0",
|
|
4
|
+
"description": "Code Level Structure and Responsibility",
|
|
5
|
+
"keywords": [],
|
|
6
|
+
"main": "./dist/epigraph-configurator.js",
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"@react-three/drei": "8.8.4",
|
|
9
|
+
"@react-three/fiber": "7.0.26",
|
|
10
|
+
"@splidejs/react-splide": "^0.6.20",
|
|
11
|
+
"concurrently": "^7.2.2",
|
|
12
|
+
"env-cmd": "^10.1.0",
|
|
13
|
+
"fs-extra": "^10.1.0",
|
|
14
|
+
"jsdoc": "^3.6.10",
|
|
15
|
+
"lint-staged": "^13.0.3",
|
|
16
|
+
"live-server": "^1.2.2",
|
|
17
|
+
"path": "^0.12.7",
|
|
18
|
+
"react": "17.0.2",
|
|
19
|
+
"react-dom": "17.0.2",
|
|
20
|
+
"react-quill": "^2.0.0-beta.4",
|
|
21
|
+
"react-scripts": "5.0.0",
|
|
22
|
+
"react-spring-bottom-sheet": "^3.4.0",
|
|
23
|
+
"react-tabs": "^4.2.1",
|
|
24
|
+
"react-toastify": "^9.0.1",
|
|
25
|
+
"three": "0.137.5",
|
|
26
|
+
"zustand": "3.6.9"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"eslint": "^8.20.0",
|
|
30
|
+
"eslint-config-standard": "^17.0.0",
|
|
31
|
+
"eslint-plugin-import": "^2.26.0",
|
|
32
|
+
"eslint-plugin-n": "^15.2.4",
|
|
33
|
+
"eslint-plugin-promise": "^6.0.0",
|
|
34
|
+
"eslint-plugin-react": "^7.30.1",
|
|
35
|
+
"husky": "^8.0.0",
|
|
36
|
+
"jsdoc-to-markdown": "^7.1.1",
|
|
37
|
+
"prettier": "^2.7.1",
|
|
38
|
+
"pretty-quick": "^3.1.3",
|
|
39
|
+
"typescript": "3.8.3",
|
|
40
|
+
"webpack": "^5.73.0"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"live": "live-server --port=6868 --host=localhost --no-browser --cors",
|
|
44
|
+
"start": "env-cmd -f .env.dev concurrently \"npm run live\" \"react-scripts start\"",
|
|
45
|
+
"build": "react-scripts build",
|
|
46
|
+
"organiseDist:prod": "set BUILD_STAGE=production&& node ./scripts/organiseDistribution.js",
|
|
47
|
+
"organiseDist:staging": "set BUILD_STAGE=staging&& node ./scripts/organiseDistribution.js",
|
|
48
|
+
"build:prod": "env-cmd -f .env.production npm run build && npm run organiseDist:prod",
|
|
49
|
+
"build:staging": "env-cmd -f .env.staging npm run build && npm run organiseDist:staging",
|
|
50
|
+
"build:dev": "env-cmd -f .env.dev npm run build",
|
|
51
|
+
"generate-api-docs": "node ./src/generateApiDocsAsMD.js",
|
|
52
|
+
"build:client-docs": "npm run generate-api-docs && cd ./docs/client-docs && npm run build",
|
|
53
|
+
"live:client-docs": "cd ./docs/client-docs && npm run start",
|
|
54
|
+
"build-and-run:client-docs": "npm run generate-api-docs && cd ./docs/client-docs && npm run build && npm run serve",
|
|
55
|
+
"build:internal-docs": "npm run generate-api-docs && cd ./docs/internal-docs && npm run build",
|
|
56
|
+
"live:internal-docs": "cd ./docs/internal-docs && npm run start",
|
|
57
|
+
"build-and-run:internal-docs": "npm run generate-api-docs && cd ./docs/internal-docs && npm run build && npm run serve",
|
|
58
|
+
"build:all-docs": "npm run build:client-docs && npm run build:internal-docs",
|
|
59
|
+
"publish:client-docs": "echo ======== Building Client Documentaion ======== && npm run build:client-docs && echo == echo ======== Publishing Client Documentaion ======== && cd ./docs/client-docs/ && gcloud app deploy --project composite-sun-338620",
|
|
60
|
+
"prepare": "husky install",
|
|
61
|
+
"format-all": "prettier -w . && git add -A .",
|
|
62
|
+
"format": "pretty-quick --staged"
|
|
63
|
+
},
|
|
64
|
+
"browserslist": [
|
|
65
|
+
">0.2%",
|
|
66
|
+
"not dead",
|
|
67
|
+
"not ie <= 11",
|
|
68
|
+
"not op_mini all"
|
|
69
|
+
],
|
|
70
|
+
"files": [
|
|
71
|
+
"dist/"
|
|
72
|
+
],
|
|
73
|
+
"repository": {
|
|
74
|
+
"type": "git",
|
|
75
|
+
"url": "git+https://github.com/epigraph-us/epigraph-configurator.git"
|
|
76
|
+
},
|
|
77
|
+
"author": "puneet@epigraph.us",
|
|
78
|
+
"license": "Apache-2.0",
|
|
79
|
+
"bugs": {
|
|
80
|
+
"url": "https://github.com/epigraph-us/epigraph-configurator/issues"
|
|
81
|
+
}
|
|
82
|
+
}
|