-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run prepublishOnly",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"lint": "prettier --check .; eslint --ext .ts,.tsx .",
"pulumi": "yarn build && pulumi -C packages/pulumi",
"test": "jest"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"fast-check": "^2.14.0",
"jest": "^26.6.3",
"jest-fast-check": "^1.0.2",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 88,
"tabWidth": 4,
"trailingComma": "all"
},
"name": "zeroindexed"
}