This repository has been archived by the owner on Mar 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
61
62
63
64
65
66
67
68
{
"name": "vulcan",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:weareasterisk/vulcan.git",
"author": "Muhammad Khatri <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lerna": "npx lerna",
"bootstrap": "npx lerna bootstrap",
"clean": "npx lerna clean",
"build": "npx lerna run build",
"start": "npx lerna run start --stream",
"dev": "npx lerna run dev --stream",
"lint": "eslint packages --ext .ts,.tsx,.js,.jsx",
"lint:write": "eslint packages --fix --ext .ts,.tsx,.js,.jsx"
},
"workspaces": [
"backend/",
"frontend/"
],
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/config-lerna-scopes": "^8.2.0",
"@types/get-port": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"bluebird": "^3.7.1",
"cli-progress": "^3.3.1",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"execa": "^3.2.0",
"get-port": "^5.0.0",
"globby": "^10.0.1",
"hamjest": "^3.2.5",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lerna": "^3.18.1",
"lerna-changelog": "^0.8.2",
"lint-staged": "^9.4.2",
"multimatch": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"strip-ansi": "^5.2.0",
"superagent": "^5.2.1",
"supertest": "^4.0.2",
"through2": "^3.0.1",
"wait-for-localhost": "^3.2.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"git add"
]
}
}