This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "@kurone-kito/demandaro",
"private": true,
"version": "0.1.0",
"description": "Practice of client-only diagnostic app",
"license": "Apache-2.0",
"author": "kurone-kito <krone@kit.black>",
"bugs": {
"url": "https://github.com/kurone-kito/demandaro/issues"
},
"homepage": "https://github.com/kurone-kito/demandaro#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kurone-kito/demandaro.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf public && gatsby build",
"build:gh": "npm run build -- --prefix-paths --no-uglify",
"clean": "gatsby clean",
"develop": "gatsby develop",
"lint": "eslint --fix",
"serve": "gatsby serve",
"start": "npm run develop",
"test": "echo \"TODO: TESTS ARE NOT IMPLEMENTED\" && exit 1"
},
"engines": {
"node": ">=14.4"
},
"dependencies": {
"gatsby": "^2.23.12",
"js-yaml": "^3.14.0",
"lodash.noop": "^3.0.1",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"unstated-next": "^1.1.0"
},
"devDependencies": {
"@types/js-yaml": "^3.12.5",
"@types/lodash.noop": "^3.0.6",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.2",
"eslint-plugin-react-hooks": "^4.0.4",
"gatsby-plugin-alias-imports": "^1.0.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.5"
}
}