-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
133 lines (133 loc) · 3.43 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
130
131
132
133
{
"name": "dsadmin",
"version": "0.20.0",
"scripts": {
"start": "concurrently -n db,js,srv yarn:start-emulator yarn:start-build yarn:start-server",
"build": "./build.mjs",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "prettier --loglevel warn --check \"src/**/*.{js,jsx,ts,tsx}\" && tsc --noEmit && eslint .",
"test": "./build.mjs --test",
"test-watch": "./build.mjs --test --watch",
"test-coverage": "./build.mjs --test --coverage",
"start-emulator": "gcloud --project=dsadmin-dev beta emulators datastore start --host-port=127.0.0.1:8081 --data-dir=emulator-data",
"start-build": "./build.mjs --watch",
"start-server": "./bin/dsadmin.js --project=dsadmin-dev",
"initialize-dev-db": "./bin/initialize-dev-db.mjs",
"prepare": "./build.mjs"
},
"repository": "github:remko/dsadmin",
"dependencies": {
"http2-proxy": "^5.0.53",
"jsesc": "^3.0.2",
"node-static": "^0.7.11",
"yargs": "14.2.3"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/lodash": "^4.14.170",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/querystringify": "^2.0.0",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/react-modal": "^3.12.0",
"@types/react-table": "^7.7.1",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"axios": "^0.21.1",
"bootstrap": "^5.0.1",
"chai": "^4.3.4",
"classnames": "^2.3.1",
"concurrently": "^6.3.0",
"esbuild": "^0.13.12",
"eslint": "^7.29.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"lodash": "^4.17.21",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"pako": "^2.0.4",
"path-to-regexp": "^6.2.0",
"prettier": "^2.2.1",
"querystringify": "^2.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.14.3",
"react-query": "^3.17.2",
"react-table": "^7.7.0",
"typescript": "^4.3.5",
"wouter": "^2.7.4"
},
"files": [
"public",
"bin/dsadmin.js"
],
"bin": "./bin/dsadmin.js",
"license": "MIT",
"keywords": [
"google",
"cloud",
"datastore",
"emulator",
"gui"
],
"nyc": {
"all": true,
"reporter": [
"text",
"html"
],
"include": [
".esbuild-test/**"
],
"exclude": [],
"excludeAfterRemap": false
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"prettier",
"react",
"@typescript-eslint"
],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"react/display-name": 0,
"react/prop-types": 0
},
"ignorePatterns": [
"public/dist",
"babel.config.js"
]
},
"prettier": {
"trailingComma": "all"
}
}