forked from HadoukenIO/service-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.82 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
{
"name": "openfin-service-tooling",
"version": "1.0.17",
"description": "",
"main": "index.js",
"scripts": {
"check": "eslint src demo --ext .ts --ext .tsx --config src/config/.eslintrc.json",
"clean": "rimraf dist",
"fix": "eslint src demo --ext .ts --ext .tsx --config src/config/.eslintrc.json --fix",
"build": "npm run clean && tsc -p tsconfig.json && node src/fileCopy.js",
"demo": "npm run build && cd demo && npm run start",
"demo:build": "npm run build && cd demo && rimraf dist && npm run build",
"start": "npm run build && node dist/cli.js start",
"deploy:local": "npm run build && cd dist && npm pack"
},
"repository": {
"type": "git",
"url": "https://github.com/HadoukenIO/service-tooling"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HadoukenIO/service-tooling/issues"
},
"bin": {
"svc-tools": "cli.js"
},
"homepage": "https://github.com/HadoukenIO/service-tooling",
"dependencies": {
"@types/execa": "^0.9.0",
"@types/jest": "^24.0.15",
"@types/rimraf": "^2.0.2",
"@types/webpack": "^4.4.35",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"acorn": "^6.2.0",
"archiver": "^3.0.0",
"commander": "^2.20.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^1.0.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsdoc": "^4.8.4",
"eslint-plugin-react": "^7.14.2",
"execa": "^1.0.0",
"express": "^4.17.1",
"file-loader": "^3.0.1",
"jest": "^24.8.0",
"jest-circus": "^24.8.0",
"jest-cli": "^24.8.0",
"jest-environment-node": "^24.8.0",
"jest-junit": "^6.4.0",
"jest-util": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.12.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^1.0.0",
"ts-jest": "^24",
"ts-loader": "^4.4.2",
"typedoc": "^0.15.0",
"typedoc-plugin-external-module-name": "^2.1.0",
"url-loader": "^1.0.1",
"webpack": "^4.36.0",
"webpack-cli": "^3.3.6",
"webpack-dev-middleware": "^3.7.0",
"ws": "^7.1.2"
},
"devDependencies": {
"@types/archiver": "^2.1.3",
"@types/copy-webpack-plugin": "^4.4.4",
"@types/express": "^4.17.0",
"@types/mini-css-extract-plugin": "^0.8.0",
"@types/mkdirp": "^0.5.2",
"@types/node": "^9.6.49",
"@types/node-fetch": "^2.3.7",
"@types/openfin": "^43.0.1",
"@types/webpack-dev-middleware": "^2.0.3",
"fs-extra": "^7.0.1",
"glob": "^7.1.4",
"hadouken-js-adapter": "^0.39.1",
"mkdirp": "^0.5.1",
"openfin-service-config": "^1.0.1",
"pre-commit": "^1.2.2",
"typescript": "^3.5.3"
},
"peerDependencies": {
"typescript": "3.x"
},
"precommit": {
"run": [
"check"
]
}
}