-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 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
63
64
65
66
67
{
"name": "Nextion",
"version": "1.0.0",
"author": "75asa <[email protected]>",
"dependencies": {
"@notionhq/client": "^0.4.9",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"ts-command-line-args": "^2.2.0"
},
"devDependencies": {
"@types/jest": "25.2.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "23.13.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "26.0.1",
"prettier": "^2.5.1",
"ts-jest": "26.0.0",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=16.4.0",
"yarn": ">=1.12.0"
},
"license": "MIT",
"main": "dist/src/main.js",
"repository": "[email protected]:tam-bourine/Nextion.git",
"scripts": {
"build": "tsc -p .",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"lint:fix": "yarn lint --fix && prettier --write './{__tests__,src}/**/*.{js,ts}'",
"test": "jest",
"start": "node dist/src/main.js",
"start:chooseNext": "yarn start --mode=chooseNext",
"start:watchDone": "yarn start --mode=watchDone",
"start:fetchIcon": "yarn start --mode=fetchIcon",
"dev": "ts-node -r tsconfig-paths/register --files src/main.ts",
"dev:chooseNext": "yarn dev --mode=chooseNext",
"dev:watchDone": "yarn dev --mode=watchDone",
"dev:fetchIcon": "yarn dev --mode=fetchIcon"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"moduleNameMapper": {
"^~/(.+)": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.test.ts"
]
}
}