-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "balljs",
"private": true,
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "npm run transpile",
"transpile": "lerna run prepublish",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node packages/cli/bin/cli dev -w \"src/**/*.* packages/*/lib/**/*.js\" -e src/index",
"watch": "node scripts/dev.js",
"start": "nodemon --exec cross-env MONKEY_DEV=true ts-node src/index",
"start:prod": "node packages/cli/bin/cli start",
"build:prod": "node packages/cli/bin/cli build",
"build:core": "cd packages/core && npm run prepublish",
"build:utils": "cd packages/utils && npm run prepublish"
},
"keywords": [],
"homepage": "https://github.com/wangshihao111/balljs",
"workspaces": [
"packages/*"
],
"author": "",
"license": "MIT",
"dependencies": {
"typescript": "^4.2.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cross-env": "^7.0.3",
"eslint": "^7.24.0",
"husky": "^4.0.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"packages/*/src/**/*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}