-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.35 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.35 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
{
"name": "integration-sandbox",
"version": "0.1.0",
"private": false,
"scripts": {
"start": "BROWSER_ARGS=--enable-precise-memory-info react-scripts start",
"test": "react-scripts test --env=jsdom",
"test:ci": "react-scripts test --env=jsdom -- --ci --reporters=default --reporters=jest-junit"
},
"eslintIgnore": [],
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:react-hooks/recommended"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": "auto",
"shippedProposals": true
}
]
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@faker-js/faker": "^7.4.0",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.0",
"@waymark/waymark-sdk": "^2.8.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"jsoneditor": "^9.1.7",
"jsoneditor-react": "^3.1.0",
"jsrsasign": "^10.1.5",
"penpal": "^5.3.0",
"pixi.js": "^5.3.7",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.1",
"react-hook-form": "^6.15.3",
"react-scripts": "4.0.1",
"react-simple-snackbar": "^1.1.10",
"react-tooltip": "^4.2.14",
"stats.js": "^0.17.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/node": "7.10.5",
"@babel/preset-env": "^7.18.10",
"babel-eslint": "^10.1.0",
"canvas": "^2.6.1",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-waymark": "github:stikdev/eslint-config-waymark#v0.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.7",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npx eslint --cache --fix",
"npx prettier --write"
]
}
}