-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.2 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
{
"name": "matron",
"version": "1.0.0",
"main": "./dist/matron.js",
"bin": {
"matron": "./dist/matron.js"
},
"files": [
"dist"
],
"scripts": {
"start": "tsnd --respawn ./src/cli/index.ts",
"build": "yarn generate-json-schema && run-p build:js build:types",
"build:js": "TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --mode=production",
"build:types": "tsc -p tsconfig.prod.json --emitDeclarationOnly",
"local": "yarn build && npm link && rm -rf package-lock.json",
"test": "jest",
"semantic-release": "semantic-release",
"generate-json-schema": "ts-json-schema-generator -p ./src/core/parser/parser.types.ts -t MatronDocument -o ./src/core/parser/schema.json"
},
"release": {
"branches": [
"master",
"next",
{
"name": "beta",
"prerelease": true
}
]
},
"keywords": [
"Typescript",
"Webpack",
"Parcel",
"Jest",
"Karma",
"Jasmine",
"CLI",
"react"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/cross-spawn": "^6.0.1",
"@types/dotenv-flow": "^3.0.0",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.1.3",
"@types/js-yaml": "^3.12.2",
"@types/node": "^13.7.1",
"@types/uuid": "^3.4.7",
"@types/webpack": "^4.41.6",
"@types/webpack-node-externals": "^1.7.1",
"@types/yargs": "^15.0.3",
"babel-loader": "^8.0.6",
"jest": "^25.1.0",
"npm-run-all": "^4.1.5",
"semantic-release": "^17.0.4",
"source-map-loader": "^0.2.4",
"ts-json-schema-generator": "^0.65.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@octokit/rest": "^17.1.0",
"@reduxjs/toolkit": "^1.5.0",
"ajv": "^6.12.4",
"chalk": "^3.0.0",
"cross-spawn": "^7.0.2",
"deepmerge": "^4.2.2",
"dotenv-flow": "^3.2.0",
"fs-extra": "^8.1.0",
"js-yaml": "^3.14.1",
"morphism": "^1.12.3",
"uuid": "^3.4.0",
"xstate": "^4.12.0",
"yargs": "^16.0.0"
},
"description": ""
}