-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"private": true,
"name": "mapbox-service-project",
"scripts": {
"bootstrap": "lerna bootstrap --hoist --nohoist=eslint-config-prettier",
"build": "lerna run build --scope=mapbox-service --stream",
"clean": "lerna run clean",
"clean:all": "npm run clean && lerna clean -y && rm -rf node_modules",
"outdated": "lerna exec npm outdated",
"postinstall": "npm run bootstrap && npm run prepare",
"prepare": "husky install",
"start": "lerna run start",
"test": "lerna run test --stream"
},
"author": {
"name": "load0ne",
"email": "[email protected]"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "https://github.com/oh-when/mapbox-service"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.27.0",
"eslint-loader": "^4.0.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"license-checker": "^25.0.1",
"lint-staged": "^11.0.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}