forked from equinor/fusion-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.79 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@equinor/fusion-cli",
"description": "A cli for creating, starting, building, deploying and publishing Fusion apps and tiles",
"version": "0.2.2",
"author": "Fusion Core",
"bin": {
"fusion": "./bin/run"
},
"bugs": "https://github.com/equinor/fusion-cli/issues",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@equinor/fusion": "^0.1.97",
"@hot-loader/react-dom": "^16.8.6",
"@oclif/command": "^1.5.13",
"@oclif/config": "^1.13.0",
"@oclif/plugin-autocomplete": "^0.1.2",
"@oclif/plugin-help": "^2.1.6",
"@oclif/plugin-not-found": "^1.2.2",
"@types/execa": "^0.9.0",
"@types/inquirer": "^6.0.2",
"@types/listr": "^0.14.0",
"archiver": "^3.1.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^2.0.2",
"compression": "^1.7.4",
"css-loader": "^2.1.1",
"execa": "^1.0.0",
"expose-loader": "^0.7.5",
"express": "^4.17.0",
"figlet": "^1.2.1",
"fork-ts-checker-webpack-plugin": "^1.3.3",
"get-port": "^5.0.0",
"globby": "^8.0.2",
"history": "^4.9.0",
"inquirer": "^6.3.1",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"listr": "^0.14.3",
"log-symbols": "^3.0.0",
"ncp": "^2.0.0",
"open": "^6.3.0",
"pkg-install": "^1.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.7",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"slugify": "^1.3.4",
"style-loader": "^0.23.1",
"tslib": "^1.9.3",
"typescript": "^3.4.5",
"webpack": "^4.32.0",
"webpack-cli": "^3.3.2",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"@equinor/fusion-components": "0.0.39",
"@oclif/dev-cli": "^1.22.0",
"@oclif/test": "^1.2.4",
"@oclif/tslint": "^3.1.1",
"@types/archiver": "^3.0.0",
"@types/chai": "^4.1.7",
"@types/chalk": "^2.2.0",
"@types/compression": "0.0.36",
"@types/express": "^4.16.1",
"@types/guid": "^1.0.0",
"@types/log-symbols": "^3.0.0",
"@types/mocha": "^5.2.6",
"@types/node": "^10.14.7",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.3",
"@types/rimraf": "^2.0.2",
"@types/webpack-dev-middleware": "^2.0.2",
"@types/webpack-env": "^1.13.9",
"@types/webpack-hot-middleware": "^2.16.5",
"@types/webpack-merge": "^4.1.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"source-map-loader": "^0.2.4",
"ts-node": "^8.1.0",
"tslib": "^1.9.3",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/equinor/fusion-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "fusion",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete"
]
},
"repository": "equinor/fusion-cli",
"scripts": {
"build:start-app-bundle": "webpack --config ./src/start-app/webpack.config.js",
"copy": "cp -r src/templates/ lib/ && cp -r src/start-app/dist lib/start-app/",
"postpack": "rm oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && npm run copy && oclif-dev manifest",
"test": "echo \"No test specified\""
},
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public"
}
}