forked from samsonajulor/address_watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "address-watcher",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "Group III",
"license": "MIT",
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"build-ts": "tsc",
"format": "cross-env prettier --write ./**/*.{js,ts,md,json} --config ./.prettierrc",
"prepare": "husky install && npx husky set .husky/pre-commit \"yarn format && git add .\"",
"install-all": "yarn && cd app/backend && yarn && cd ../frontend && yarn "
},
"repository": {
"type": "git",
"url": "git+https://github.com"
},
"keywords": [
"backend"
],
"bugs": {
"url": "https://github.com/"
},
"homepage": "https://github.com/",
"dependencies": {
"cross-env": "^7.0.3",
"husky": "^8.0.1",
"lint-staged": "^15.0.2",
"pm2": "^5.3.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "7.12.13",
"@babel/plugin-transform-runtime": "^7.13.8",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.12.17",
"@babel/register": "^7.5.5",
"@types/nanoid-dictionary": "^4.2.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^5.2.2"
}
}