-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.84 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "issue-tracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"api-docs": "scripty",
"build": "scripty",
"lint": "scripty",
"test": "scripty",
"clean": "scripty",
"dev": "SCRIPTY_PARALLEL=true scripty",
"test:ci": "lerna run test --since main...HEAD --stream -- --passWithNoTests",
"start:client": "serve -s packages/webapp/build -l 4000",
"start:api": "node packages/api/dist/index.js",
"e2e": "start-test start:api 5000 start:client 4000 cy:run",
"cy:open": "cypress open",
"cy:run": "cypress run",
"heroku-postbuild": "yarn build"
},
"scripty": {
"path": "./scripts/workspace"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Issue-Tracker-M/issue-tracker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"private": true,
"bugs": {
"url": "https://github.com/Issue-Tracker-M/issue-tracker/issues"
},
"homepage": "https://github.com/Issue-Tracker-M/issue-tracker#readme",
"volta": {
"node": "14.15.4",
"yarn": "1.22.10"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@microsoft/api-documenter": "^7.12.4",
"@microsoft/api-extractor": "^7.13.0",
"@testing-library/cypress": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"commitlint": "^11.0.0",
"cypress": "^6.6.0",
"eslint": "^7.18.0",
"husky": "^4.3.8",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"rimraf": "^3.0.2",
"scripty": "^2.0.0",
"serve": "^11.3.2",
"start-server-and-test": "^1.12.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}