-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.29 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "devpr",
"version": "0.0.0-development",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"website": "nx serve website",
"website:build": "nx build website --prod",
"recorder": "nx serve recorder",
"recorder:build": "nx build recorder --prod",
"devector": "nx serve devector",
"devector:build": "nx build devector --prod",
"devector:mapper": "./scripts/images-mapper.sh",
"presenter": "nx serve presenter",
"presenter:build": "nx build presenter --prod",
"example": "nx serve example",
"example:build": "nx build example --prod",
"simulate:deploy": "./scripts/simulate-deploy.sh",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"design-tokens": "./scripts/design-tokens.sh",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"prepare": "husky install",
"postinstall": "nx build common-web",
"semantic-release": "semantic-release",
"commit": "npx git-cz"
},
"private": false,
"dependencies": {
"@ffmpeg/core": "^0.10.0",
"@ffmpeg/ffmpeg": "^0.10.1",
"@ungap/custom-elements": "^1.0.0",
"core-js": "^3.6.5",
"document-register-element": "1.13.1",
"express": "4.17.2",
"highlight.js": "^10.7.2",
"json5": "^2.2.0",
"lodash.debounce": "^4.0.8",
"marked": "^2.0.6",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.7",
"tslib": "^2.0.0"
},
"devDependencies": {
"@guiseek/tool-release": "^0.0.1",
"@nrwl/cli": "14.0.0",
"@nrwl/cypress": "14.0.0",
"@nrwl/devkit": "14.0.0",
"@nrwl/eslint-plugin-nx": "14.0.0",
"@nrwl/express": "14.0.0",
"@nrwl/jest": "14.0.0",
"@nrwl/js": "14.0.0",
"@nrwl/linter": "14.0.0",
"@nrwl/node": "14.0.0",
"@nrwl/nx-cloud": "14.0.3",
"@nrwl/web": "14.0.0",
"@nrwl/workspace": "14.0.0",
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/marked": "^2.0.3",
"@types/node": "14.14.33",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"cypress": "^6.0.1",
"cz-customizable": "^6.3.0",
"dotenv": "10.0.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"exitzero": "^1.0.1",
"husky": "^6.0.0",
"jest": "27.5.1",
"prettier": "2.6.2",
"semantic-release": "^17.4.3",
"style-dictionary": "^2.10.3",
"supertest": "^6.1.3",
"ts-jest": "27.1.4",
"ts-node": "~9.1.1",
"typescript": "4.3.5",
"nx": "14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DeveloperParana/recursos.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}