-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.67 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
{
"license": "MIT",
"author": "Alexander Kachkaev <[email protected]>",
"scripts": {
"build": "ts-node src/build.ts",
"fix": "npm-run-all --continue-on-error fix:*",
"fix:markdownlint": "markdownlint --fix \"**/*\"",
"fix:prettier": "prettier --write \"**/*\"",
"fix:yarn-deduplicate": "yarn install && yarn-deduplicate --strategy=fewer && yarn install",
"lint": "npm-run-all --continue-on-error lint:*",
"lint:markdownlint": "markdownlint \"**/*\"",
"lint:prettier": "prettier --check \"**/*\"",
"lint:tsc": "tsc --project .",
"lint:yarn-deduplicate": "yarn-deduplicate --fail --list --strategy=fewer",
"simulate": "ts-node src/simulate.ts",
"test": "jest"
},
"dependencies": {
"@kachkaev/commands": "^0.1.1",
"dotenv": "^16.0.0",
"envalid": "^7.3.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.1",
"jszip": "^3.8.0",
"luxon": "^2.5.2"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@kachkaev/markdownlint-config": "^0.3.0",
"@kachkaev/prettier-config": "^1.3.1",
"@types/aws-lambda": "^8.10.93",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/jszip": "^3.4.1",
"@types/luxon": "^2.3.1",
"@types/node": "^17.0.23",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"markdownlint-cli": "^0.31.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.4.0",
"prettier": "^2.6.1",
"prettier-plugin-packagejson": "^2.2.17",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"yarn-deduplicate": "^4.0.0"
},
"engines": {
"node": ">=12.21.0",
"yarn": ">=1.22.0"
}
}