-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) Β· 3.98 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) Β· 3.98 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
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
{
"name": "@app/sensenet",
"version": "1.26.0",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"keywords": [
"sensenet",
"cms",
"csp",
"administration",
"content management"
],
"scripts": {
"fix:prettier": "prettier \"{,!(dist|temp|bundle)/**/}*.{ts,tsx}\" --write",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.prod.js",
"build:stats": "webpack --config webpack.prod.js --profile --json > stats.json",
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack serve --progress --config webpack.dev.js",
"cypress": "cypress open --env coverage=false",
"cypress:local": "cypress open --env coverage=false --config baseUrl=http://localhost:8080",
"cypress:all": "cypress run --env coverage=false",
"cypress:coverage": "cypress run --headed -b chrome --config-file ./cypress.config.ts && nyc report --reporter=text-summary",
"instrument": "nyc instrument --compct=false --complete-copy --delete src instrumented && yarn start --env coverage"
},
"private": true,
"publishConfig": {
"access": "restricted"
},
"author": "Sense/Net <snteam@sensenet.com> (http://sensenet.com/)",
"license": "GPL-2.0",
"homepage": "https://sensenet.com",
"nyc": {
"extends": "nyc-config-tsx",
"all": true,
"reporter": [
"html"
]
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@relative-ci/agent": "4.1.3",
"@types/autosuggest-highlight": "^3.2.0",
"@types/react": "^17.0.15",
"@types/react-autosuggest": "10.1.6",
"@types/react-dom": "^17.0.9",
"@types/react-responsive": "^8.0.5",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized": "^9.21.21",
"@types/uuid": "9.0.0",
"clean-webpack-plugin": "4.0.0",
"compression-webpack-plugin": "10.0.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "6.7.3",
"css-minimizer-webpack-plugin": "4.2.2",
"cypress": "10.4.0",
"cypress-file-upload": "^5.0.8",
"cypress-xpath": "^1.6.2",
"eslint-config-prettier": "8.6.0",
"file-loader": "^6.1.1",
"fork-ts-checker-webpack-plugin": "^6.3.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "2.7.2",
"monaco-editor-webpack-plugin": "^4.1.1",
"nyc": "^15.1.0",
"nyc-config-tsx": "^0.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"source-map-support": "0.5.21",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"url-loader": "^4.1.1",
"webpack": "5.76.0",
"webpack-bundle-analyzer": "4.8.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@iconify-icons/logos": "1.2.23",
"@iconify/react": "4.1.0",
"@material-ui/core": "4.11.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "4.0.0-alpha.58",
"@material-ui/pickers": "^3.3.10",
"@sensenet/authentication-oidc-react": "^2.3.1",
"@sensenet/client-core": "^4.0.2",
"@sensenet/client-utils": "^2.2.0",
"@sensenet/controls-react": "^9.0.0",
"@sensenet/default-content-types": "^5.0.0",
"@sensenet/document-viewer-react": "^4.2.3",
"@sensenet/editor-react": "^0.3.2",
"@sensenet/hooks-react": "^1.6.3",
"@sensenet/list-controls-react": "^2.1.2",
"@sensenet/pickers-react": "^2.1.4",
"@sensenet/query": "^2.1.3",
"@sensenet/repository-events": "^2.1.3",
"autosuggest-highlight": "^3.3.4",
"clsx": "1.2.1",
"date-fns": "2.29.3",
"filesize": "10.0.6",
"react": "^16.13.0",
"react-autosuggest": "^10.1.0",
"react-day-picker": "^8.6.0",
"react-dom": "^16.13.0",
"react-markdown": "6.0.3",
"react-monaco-editor": "0.44.0",
"react-responsive": "9.0.2",
"react-virtualized": "^9.22.3",
"semaphore-async-await": "^1.5.1",
"uuid": "9.0.0"
},
"typings": "./dist/index.d.ts"
}