This repository was archived by the owner on Oct 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.18 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.18 KB
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
{
"name": "@furystack-quad/frontend",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"keywords": [
"sensenet",
"ecm",
"cps",
"administration",
"content management"
],
"scripts": {
"precommit": "npm run test",
"commit": "git-cz",
"test:jest": "jest",
"fix": "npm run fix:prettier && npm run fix:tslint",
"fix:prettier": "prettier \"{,!(dist|temp|bundle)/**/}*.{ts,tsx}\" --write",
"fix:tslint": "tslint --fix --project .",
"lint": "tslint --project .",
"build:webpack": "rimraf bundle && webpack",
"start": "webpack-dev-server --progress",
"predeploy": "yarn run build:webpack && cpx ./static/**/* ./bundle/assets && cpx ./static/**/.* ./bundle/assets && yarn run hackRoutes",
"hackRoutes": "copy .\\bundle\\assets\\index.html .\\bundle\\assets\\getting-started.html && copy .\\bundle\\assets\\index.html .\\bundle\\assets\\guide.html && mkdir .\\bundle\\assets\\guide && copy .\\bundle\\assets\\index.html .\\bundle\\assets\\guide\\inject.html && copy .\\bundle\\assets\\index.html .\\bundle\\assets\\guide\\data-stores.html && copy .\\bundle\\assets\\index.html .\\bundle\\assets\\guide\\repository.html",
"deploy": "gh-pages -d bundle/assets -t -b master"
},
"private": true,
"publishConfig": {
"access": "private"
},
"author": "Gallay Lajos <gallay.lajos@gmail.com> (http://furystack.github.io/)",
"license": "GPL-2.0",
"homepage": "https://furystack.github.io/",
"devDependencies": {
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/react-responsive": "^8.0.1",
"@types/react-router": "^5.0.1",
"@types/react-router-dom": "^5.1.2",
"@types/react-syntax-highlighter": "^11.0.1",
"@types/uuid": "^3.4.4",
"autoprefixer": "^9.5.1",
"awesome-typescript-loader": "^5.2.1",
"cpx": "^1.5.0",
"css-loader": "^3.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-config-webpack-plugin": "^1.3.1",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-react": "^4.0.0",
"typescript": "^3.5.1",
"url-loader": "^2.0.1",
"webpack": "^4.32.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"dependencies": {
"@furystack/logging": "^2.0.2",
"@material-ui/core": "^4.0.1",
"@material-ui/icons": "^4.0.1",
"@sensenet/client-utils": "^1.6.1",
"gh-pages": "^2.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-responsive": "^8.0.1",
"react-syntax-highlighter": "^11.0.2",
"semaphore-async-await": "^1.5.1",
"uuid": "^3.3.2"
},
"typings": "./dist/index.d.ts"
}