-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
106 lines (106 loc) · 2.52 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
{
"name": "dataslate",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.9.0 <21.0.0"
},
"dependencies": {
"@sentry/react": "^7.114.0",
"@sentry/tracing": "^7.114.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.4",
"@types/react": "^16.14.17",
"@types/react-dom": "^16.9.8",
"axios": "^1.7.4",
"bootstrap": "^4.6.2",
"browserify": "^17.0.0",
"crypto-browserify": "^3.12.0",
"jquery": "^3.7.1",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"node-object-hash": "^2.3.10",
"node-sass": "^8.0.0",
"pluralize": "^8.0.0",
"popper.js": "^1.16.1",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-bootstrap": "^1.6.6",
"react-bootstrap-slider": "^3.0.0",
"react-dom": "^16.13.1",
"react-dropzone": "^11.5.1",
"react-markdown": "^8.0.7",
"react-router-dom": "^5.3.0",
"react-string-replace": "^1.1.1",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"slugify": "^1.6.6",
"stream-browserify": "^3.0.0",
"typescript": "^4.9.5",
"uuid": "^10.0.0",
"xmldom-ts": "^0.3.1",
"xpath-ts": "^1.3.13"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --coverage",
"eject": "react-scripts eject",
"lint": "./node_modules/.bin/ts-standard",
"lint-fix": "./node_modules/.bin/ts-standard --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "https://dataslate.rocks",
"devDependencies": {
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.0.0",
"@types/uuid": "^9.0.8",
"@types/xmldom": "^0.1.34",
"csv-parse": "^5.5.6",
"react-app-rewired": "^2.2.1",
"react-scripts": "^5.0.1",
"react-test-renderer": "^16.13.1",
"ts-standard": "^12.0.2"
},
"ts-standard": {
"env": [
"jest",
"es6",
"browser"
],
"ignore": [
"build/*",
"docs/*",
"src/react-app-env.d.ts",
"src/parsers/WH40k9e/Stratagems.ts"
]
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
}
}