-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.55 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": "polar",
"description": "Polar is a development environment to compile, deploy, test, run scrt contracts on different networks.",
"repository": "https://github.com/arufa-research/polar.git",
"author": "https://github.com/coco-sha",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=14.11.0",
"yarn": ">=1.22.4"
},
"scripts": {
"build": "yarn workspaces run build",
"watch": "tsc --build --watch packages/polar",
"test": "yarn workspaces run test",
"lint": "yarn workspaces -p run lint",
"lint:fix": "yarn workspaces -p run lint:fix",
"coverage": "yarn workspaces -p run coverage",
"prepare": "husky install"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.18.31",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"cross-env": "7.0.3",
"eslint": "^7.26.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sonarjs": "^0.7.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.2.12",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typedoc": "^0.23.15",
"typescript": "^4.3.2"
},
"lint-staged": {
"**/{src,test}/**/*.ts": [
"eslint --format stylish --fix"
]
},
"dependencies": {
"yarn": "^1.22.19"
}
}