generated from loreanvictor/callbag-jsx-starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
{
"name": "editor-frontend",
"version": "1.0.0",
"description": "Starter Typescript project for callbag-jsx",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js && cp -rf ./assets ./dist/assets/ && cp ./coding.blog.svg ./dist/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loreanvictor/callbag-jsx-starter-ts.git"
},
"author": "Eugene Ghanizadeh Khoub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/callbag-jsx-starter-ts/issues"
},
"homepage": "https://github.com/loreanvictor/callbag-jsx-starter-ts#readme",
"dependencies": {
"@api/editor-backend": "file:api-editor-backend-1.0.0.tgz",
"@types/glob-to-regexp": "^0.4.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.isequal": "^4.5.5",
"callbag-common": "^0.1.5",
"callbag-jsx": "^0.1.13",
"callbag-share": "^1.2.0",
"glob-to-regexp": "^0.4.1",
"jss": "^10.5.0",
"jss-preset-default": "^10.5.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.13.0",
"html-webpack-plugin": "^4.5.0",
"ts-loader": "^8.0.11",
"tslib": "^2.0.3",
"typescript": "^4.1.2",
"webpack": "^5.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.0"
},
"tyfons": {
"http://localhost:8000": {
"name": "@api/editor-backend",
"version": "1.0.0",
"url": "http://localhost:8000",
"env": "dev"
},
"https://editor-api.coding.blog": {
"name": "@api/editor-backend",
"version": "1.0.0",
"url": "https://editor-api.coding.blog",
"env": "prod"
}
}
}