forked from ImmoweltGroup/create-react-microservice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.68 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.68 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
{
"name": "create-react-microservice",
"version": "0.0.0-development",
"private": true,
"author": "Immonet dev team <[email protected]> (https://immonet.de)",
"license": "MIT",
"description": "Mono-repository for the create-react-microservice packages.",
"scripts": {
"create-react-microservice": "create-react-microservice",
"prepare": "yarn run bootstrap",
"precommit": "lint-staged && yarn test",
"clean": "yarn run clean:scaffold && yarn run clean:self",
"clean:self": "rimraf node_modules flow-typed/npm packages/*/{dist,coverage,flow-typed/npm,node_modules}",
"clean:scaffold": "cd packages/create-react-microservice-scaffold/src && yarn run clean",
"bootstrap": "flow-mono create-symlinks packages/create-react-microservice/.flowconfig && lerna run flow-typed-install && flow-mono create-stubs",
"test": "lerna run test --parallel",
"flow": "lerna run flow --parallel",
"lint": "lerna run lint --parallel",
"build": "lerna run build --parallel",
"build:watch": "lerna run build:watch --parallel"
},
"devDependencies": {
"@immowelt/styleguide-javascript": "1.0.11",
"@inkdpixels/commit-analyzer": "1.0.1",
"@inkdpixels/release-notes-generator": "1.0.1",
"flow-mono-cli": "1.4.3",
"husky": "0.14.3",
"lerna": "2.11.0",
"lint-staged": "6.1.1",
"prettier": "1.15.3",
"rimraf": "2.6.2",
"semantic-release": "8.2.3"
},
"workspaces": [
"packages/*"
],
"release": {
"analyzeCommits": "@inkdpixels/commit-analyzer",
"generateNotes": "@inkdpixels/release-notes-generator"
},
"repository": {
"type": "git",
"url": "https://github.com/ImmoweltGroup/create-react-microservice.git"
}
}