-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
62 lines (62 loc) · 1.68 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
{
"name": "create-resolve-app",
"version": "0.34.3",
"description": "A tool that generates boilerplate web applications based on the reSolve framework",
"keywords": [
"cqrs",
"eventsourcing",
"es",
"ddd"
],
"homepage": "https://github.com/reimagined/resolve/tree/master/packages/core/create-resolve-app#readme",
"bugs": {
"url": "https://github.com/reimagined/resolve/issues"
},
"repository": "https://github.com/reimagined/resolve.git",
"license": "MIT",
"author": "reimagined team",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"bin": "./bin/index.js",
"scripts": {
"build": "yarn workspace @internal/babel-compile start --name=create-resolve-app",
"test": "jest --config=../../../jest.config.js --verbose",
"testw": "jest --config=../../../jest.config.js --watchAll"
},
"dependencies": {
"@babel/runtime": "7.17.2",
"@resolve-js/debug-levels": "0.34.3",
"adm-zip": "0.5.4",
"boxen": "5.0.0",
"chalk": "4.1.0",
"command-line-args": "5.1.1",
"fs-extra": "8.1.0",
"glob": "7.1.6",
"progress": "2.0.3",
"source-map-support": "0.5.19",
"validate-npm-package-name": "3.0.0"
},
"devDependencies": {
"@types/adm-zip": "0.4.34",
"@types/command-line-args": "5.0.1",
"@types/jest": "26.0.23",
"@types/node": "14.17.5",
"@types/progress": "2.0.4",
"@types/validate-npm-package-name": "3.0.3",
"jest": "27.5.1",
"jest-mock": "27.5.1",
"ts-jest": "27.1.3"
},
"engines": {
"node": ">=14.17"
},
"babelCompile": [
{
"moduleType": "cjs",
"moduleTarget": "server",
"inputDir": "./src",
"outDir": "./lib"
}
],
"sourceType": "ts"
}