This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "@marklogic-community/grove-react-template",
"version": "2.1.0",
"description": "React/Redux template for MarkLogic Grove",
"repository": {
"type": "git",
"url": "git+https://github.com/marklogic-community/grove-react-template.git"
},
"devDependencies": {
"concurrently": "^3.6.1",
"cross-env": "^5.2.1"
},
"dependencies": {},
"scripts": {
"build": "cd ui && npm run build",
"lint": "cd middle-tier && npm run lint; cd ../ui && npm run lint",
"lint:fix": "cd middle-tier && npm run lint:fix; cd ../ui && npm run lint:fix",
"postinstall": "node scripts/postinstall.js",
"start": "concurrently --kill-others \"npm run middleTier\" \"npm run ui\" ",
"start:prod": "cross-env-shell NODE_ENV=production GROVE_UI_BUILD_PATH=../ui/build npm run middleTier:prod",
"middleTier": "cd middle-tier && npm start",
"middleTier:prod": "cd middle-tier && npm run start:prod",
"ui": "cd ui && npm start",
"test": "concurrently 'cd middle-tier && npm test' 'cd ui && npm test'"
},
"keywords": [
"MarkLogic",
"Grove",
"UI",
"search",
"React"
],
"license": "Apache-2.0",
"contributors": [
{
"name": "Matt Pileggi",
"url": "https://github.com/withjam"
},
{
"name": "Marianne Myers",
"url": "https://github.com/mariannemyers"
},
{
"name": "Geert Josten",
"url": "https://github.com/grtjn"
},
{
"name": "Duncan Grant",
"url": "https://github.com/dalaidunc"
}
]
}