-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.15 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
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
120
121
122
123
124
125
126
127
128
129
{
"name": "@sozialhelden/survey-editor",
"version": "1.0.1",
"private": false,
"repository": "sozialhelden/survey-editor",
"homepage": "https://sozialhelden.github.io/survey-editor",
"dependencies": {
"@blueprintjs/core": "^3.52.0",
"@blueprintjs/datetime": "^3.20.5",
"@blueprintjs/popover2": "^0.12.9",
"@blueprintjs/select": "^3.18.11",
"@blueprintjs/table": "^3.9.13",
"d3-color": "^3.0.0",
"d3-interpolate": "^3.0.0",
"exceljs": "^4.2.0",
"exifreader": "^4.0.0",
"immer": "^9.0.12",
"inflection": "^1.12.0",
"jsonld": "^5.0.0",
"ldflex": "^2.12.0",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"rdflib": "^2.2.15",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-map-gl": "^6.1.18",
"react-router-dom": "^5.2.0",
"simpl-schema": "^1.10.2",
"styled-components": "^5.2.1",
"swr": "^0.5.4",
"uniforms": "^3.1.0",
"uniforms-bridge-json-schema": "^3.1.0",
"uniforms-bridge-simple-schema-2": "^3.1.0",
"uniforms-semantic": "^3.1.0",
"uniforms-unstyled": "^3.1.0",
"uuid": "^8.3.2",
"uuidv5": "^1.0.0",
"web-vitals": "^1.0.1",
"worker-loader": "^3.0.7"
},
"bugs": {
"url": "https://github.com/sozialhelden/survey-editor/issues",
"email": "[email protected]"
},
"license": "SEE LICENSE IN README.md",
"main": "dist/cjs/package-index.jsx",
"module": "dist/mjs/package-index.mjsx",
"author": "Sebastian Felix Zappe <[email protected]>",
"bundleDependencies": [],
"deprecated": false,
"description": "Editor and survey runtime components for XLSForms.",
"files": [
"src/**/*",
"dist/**/*"
],
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"package:build:mjs": "tsc --project tsconfig.package.json -d --outDir dist/mjs && mv dist/mjs/package-index.jsx dist/mjs/package-index.mjsx",
"package:build:cjs": "tsc --project tsconfig.package.json -m commonjs --outDir dist/cjs",
"package:build": "rimraf dist && npm run package:build:mjs && npm run package:build:cjs && rm -f dist/*.spec.*",
"package:deploy": "npm run package:build && npm run package:test:dist && npm publish --access public",
"package:test:dev": "jest --watch",
"package:test:dist": "npm run lint && jest --coverage --no-cache",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"prettier": "npx prettier --fix src/**/*.ts test/**/*.ts --write --single-quote",
"lint": "eslint --ext .ts,.js,.jsx src"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/parser": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@babel/types": "^7.6.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/d3-color": "^2.0.1",
"@types/d3-interpolate": "^2.0.0",
"@types/exceljs": "^1.3.0",
"@types/immutable": "^3.8.7",
"@types/inflection": "^1.5.28",
"@types/jest": "^27",
"@types/lodash": "^4.14.168",
"@types/marked": "^1.2.2",
"@types/node": "^12.0.0",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-inspector": "^4.0.1",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.7",
"@types/uuid": "^8.3.4",
"babel-jest": "^27",
"coveralls": "^3.0.0",
"cross-env": "^7.0.0",
"gh-pages": "^3.1.0",
"jest": "^27.4.7",
"prettier": "^2.2.1",
"react-inspector": "^5.1.0",
"react-scripts": "^5.0.0",
"react-simple-code-editor": "^0.11.0",
"rimraf": "^3.0.0",
"ts-jest": "^27.1.3",
"typescript": "^4.1.2"
}
}