-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 2.99 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
{
"name": "yaml-schema-validator",
"version": "0.1.0",
"private": false,
"description": "yaml schema validator online",
"repository": {
"type": "git",
"url": "https://github.com/datreeio/yaml-schema-validator.git"
},
"license": "Apache-2.0",
"author": "datree.io",
"scripts": {
"start": "concurrently \"npm run watch:ts\" \"npm run watch:wasm\"",
"watch:ts": "react-app-rewired start",
"watch:wasm": "watch \"npm run build:wasm\" ./wasm",
"build": "npm run build:wasm && npm run build:ts",
"build:ts": "react-app-rewired build",
"build:wasm": "cd wasm && GOOS=js GOARCH=wasm go build -o ../public/main.wasm && cd .. && echo \"\\033[0;32mcompiled wasm successfully!\\033[0m\"",
"test": "react-app-rewired test --watchAll=false",
"test:watch": "react-app-rewired test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"prettier": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .ts,.tsx,.js,.jsx .",
"fix": "npm run prettier && npm run lint:fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"plugins": [
"simple-import-sort"
],
"extends": [
"react-app",
"react-app/jest",
"plugin:prettier/recommended"
],
"rules": {
"max-len": "off",
"prettier/prettier": [
"warn",
{
"singleQuote": true
}
],
"simple-import-sort/exports": "warn",
"simple-import-sort/imports": "warn"
},
"ignorePatterns": [
"build/*"
]
},
"dependencies": {
"@emotion/css": "^11.5.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@reduxjs/toolkit": "^1.6.2",
"ajv": "^8.8.2",
"codemirror": "^5.64.0",
"js-yaml": "^4.1.0",
"react": "^17.0.2",
"react-codemirror2": "^7.2.1",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-scripts": "4.0.3",
"web-vitals": "^1.1.2"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.3.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/codemirror": "^5.60.5",
"@types/customize-cra": "^1.0.2",
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.5",
"@types/node": "^12.20.37",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"concurrently": "^7.1.0",
"customize-cra": "^1.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.4.1",
"react-app-rewired": "^2.1.8",
"typescript": "^4.5.2",
"watch": "^1.0.2"
},
"config-overrides-path": "config-overrides.ts"
}