-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.54 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.54 KB
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
{
"name": "dcpm",
"version": "1.0.0",
"description": "the monorepo for the dcpm cli and server",
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "yarn workspaces foreach -piv -j unlimited run lint",
"dev": "yarn workspaces foreach -piv -j unlimited run dev",
"lint:commit": "commitlint --from=HEAD~1",
"build": "yarn workspaces foreach -piv -j unlimited run build",
"build:tools": "yarn workspaces foreach -piv -j unlimited --topological-dev run build-tool",
"test": "yarn workspaces foreach -piv -j unlimited run test",
"test:publish": "yarn workspaces foreach -piv -j unlimited run prepublishOnly",
"release": "yarn workspaces foreach -v run semantic-release",
"commit": "git-cz",
"emulate:ci": "yarn lint && yarn test && yarn test:publish && yarn release"
},
"private": true,
"dependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"commitizen": "4.0.4",
"cz-conventional-changelog": "3.1.0",
"eslint": "8.6.0",
"eslint-plugin-react": "7.28.0",
"node-gyp": "8.4.1",
"prettier": "2.5.1",
"typescript": "4.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"@types/node": "12.12.36"
},
"packageManager": "yarn@3.1.1",
"workspaces": [
"backend",
"cli",
"docs",
"frontend"
],
"devDependencies": {
"eslint-config-prettier": "8.3.0"
}
}