-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.26 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
{
"name": "@ir-engine/ir-bot",
"version": "0.5.8",
"description": "A test bot using puppeteer",
"repository": {
"type": "git",
"url": "git://github.com/ir-engine/ir-engine.git"
},
"engines": {
"node": ">= 16.3.0"
},
"publishConfig": {
"access": "public"
},
"npmClient": "npm",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"check-errors": "tsc --noemit",
"dev": "ts-node --swc ./src/index.ts",
"dev-koa": "ts-node --swc ./src/index_koa.ts",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"format-scss": "stylelint \"**/*.scss\" --fix",
"format-staged": "lint-staged",
"test": "exit 0",
"validate": "npm run test"
},
"dependencies": {
"bootstrap": "^5.2.3",
"geometry-interfaces": "^1.1.4",
"gl-matrix": "^3.1.0",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.0",
"koa-router": "^12.0.0",
"puppeteer": "^19.6.3"
},
"license": "ISC",
"devDependencies": {
"@types/expect-puppeteer": "^5.0.3",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4"
},
"pre-commit": [
"format-staged"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write \"**/*.{ts,tsx}\""
],
"*.scss": [
"stylelint \"**/*.scss\" --fix"
]
}
}