-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.67 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
{
"name": "optikeyboardlayout",
"version": "0.1.0",
"main": "dist",
"license": "Apache-2.0",
"scripts": {
"start": "npm run dev",
"build": "./node_modules/.bin/webpack --config ./webpack.config.prod.ts",
"dev": "./node_modules/.bin/webpack serve --config ./webpack.config.ts --port 4201 --content-base webpackDist",
"test": "./node_modules/.bin/jest --ci --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"update": "ncu -u --packageFile package.json",
"prepare": "npm run build"
},
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.1",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/react-test-renderer": "^17.0.1",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.4",
"awesome-typescript-loader": "^5.2.1",
"coveralls": "^3.1.0",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"jest": "^27.0.4",
"jest-cli": "^27.0.4",
"react-test-renderer": "^17.0.2",
"source-map-loader": "^3.0.0",
"style-loader": "^2.0.0",
"ts-jest": "=27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.1",
"webpack-dev-server": "^3.11.2"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"moduleNameMapper": {
"\\.(css|sass|scss)$": "<rootDir>/__mocks__/styleMock.ts",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.ts"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/",
"<rootDir>/lib",
"<rootDir>/dist"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testURL": "http://localhost/"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@xpfw/data": "1.0.2",
"@xpfw/form": "^1.0.2",
"@xpfw/form-web": "^1.0.1",
"ajv": "^8.6.0",
"ajv-formats": "^2.1.0",
"buffer": "^6.0.3",
"fast-json-patch": "^2.2.1",
"lodash": "^4.17.21",
"mobx": "^6.3.2",
"mobx-react": "^7.2.0",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-dropzone": "^11.3.2",
"react-measure": "^2.5.2",
"stream-browserify": "^3.0.0",
"xml-js": "^1.6.11"
}
}