-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.18 KB
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
{
"name": "create-react-microservice",
"version": "0.0.0-development",
"private": false,
"author": "Immonet dev team <aegaeon@immonet.de> (https://immonet.de)",
"license": "MIT",
"description":
"Create highly scalable and universal React microservices/applications within seconds.",
"bin": {
"create-react-microservice": "./.bin/create-react-microservice"
},
"scripts": {
"prepare": "per-env",
"prepare:development": "cd ../.. && yarn run prepare",
"prepare:test": "",
"prepare:production": "",
"test": "yarn run lint && yarn run flow && yarn run jest:coverage",
"lint": "eslint src",
"jest": "jest",
"jest:watch": "yarn run jest -- --watch",
"jest:coverage": "yarn run jest -- --coverage",
"build:clean": "rimraf dist",
"build:babel":
"NODE_ENV=production babel src --out-dir dist --ignore spec.js",
"build:flow": "flow-copy-source -v src dist --ignore='*.spec.js'",
"build:watch": "yarn run build:babel -- -w",
"prebuild": "yarn run build:clean",
"build": "yarn run build:babel && yarn run build:flow",
"flow": "flow",
"flow-typed": "flow-typed",
"flow-typed-install":
"flow-typed install --ignoreDeps=bundled peer --overwrite"
},
"devDependencies": {
"@immowelt/babel-preset-immowelt-node": "1.1.1",
"@immowelt/eslint-config-immowelt-react": "2.1.1",
"@immowelt/jest-preset-node": "1.1.1",
"babel-cli": "6.26.0",
"eslint": "5.16.0",
"flow-bin": "0.201.0",
"flow-copy-source": "2.0.9",
"flow-typed": "2.6.2",
"jest": "29.6.1",
"rimraf": "2.7.1"
},
"jest": {
"preset": "@immowelt/jest-preset-node"
},
"dependencies": {
"chalk": "2.4.2",
"check-engines": "1.6.0",
"create-any-cli": "1.3.3",
"create-react-microservice-scaffold": "0.0.0-development",
"execa": "1.0.0",
"find-node-modules": "1.0.4",
"latest-version": "5.1.0",
"meow": "5.0.0",
"node-emoji": "1.11.0",
"ora": "3.4.0",
"per-env": "1.0.2",
"trim-character": "2.0.1"
},
"engines": {
"node": ">=8.9.0",
"yarn": ">=1.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ImmoweltGroup/create-react-microservice.git"
}
}