-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 2.3 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
{
"name": "shapewordle",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "rimraf ./build && tsc && node ./build/test/index.js",
"demo": "rimraf ./build && tsc && node ./build/test/demo.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kaiyiwing/Shape_Wordle.git"
},
"author": "Kaiyi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kaiyiwing/Shape_Wordle/issues"
},
"homepage": "https://github.com/Kaiyiwing/Shape_Wordle#readme",
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"printWidth": 100,
"trailingComma": "es5"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"es6": true
},
"extends": [
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"overrides": [
{
"files": [
"src/**/*.ts",
"src/**/*.tsx"
],
"env": {
"node": false,
"browser": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"settings": {
"react": {
"version": "detect"
}
}
}
]
},
"dependencies": {
"canvas": "^2.6.1",
"color-extensions": "^1.2.0",
"lemmatizer": "0.0.1",
"natural": "^2.1.5",
"nodejieba": "^2.4.1",
"opencv4nodejs": "^5.6.0"
},
"devDependencies": {
"@types/jest": "^26.0.8",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
}
}