-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.46 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
57
58
59
60
{
"name": "aiueb",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"publish": "lerna publish",
"test": "lerna run test --no-bail",
"lint": "lerna run lint --no-bail",
"build": "lerna run build --no-bail",
"reinstall": "npm run clean && npm i",
"clean": "lerna clean --yes && rm -rf node_modules",
"postinstall": "lerna bootstrap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oshinowo-stephen/book-keeper.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oshinowo-stephen/book-keeper/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/oshinowo-stephen/book-keeper#readme",
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/dotenv": "^8.2.0",
"ava": "^5.1.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-modules-newline": "^0.0.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"lerna": "^6.4.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"docker-secret-env": "^0.2.1"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}