-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.2 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.2 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "coinstac",
"version": "2.0.0",
"description": "Decentralized Analyses Made Easy",
"main": "index.js",
"dependencies": {
"swig-templates": "^2.0.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^5.1.0",
"cross-spawn": "^4.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"fs-extra": "^0.30.0",
"github-markdown-css": "^2.10.0",
"lerna": "^2.8.0",
"marked": "^4.0.10",
"minami": "^1.2.3",
"minimist": "^1.2.5",
"pre-commit": "^1.2.2"
},
"scripts": {
"api-ci": "cd packages/coinstac-api-server/ && npm start",
"api-server": "cd packages/coinstac-api-server/ && docker compose up -d && npm start",
"build": "lerna bootstrap",
"build-app": "mkdir -p ./build && docker pull coinstacteam/coinstac && scripts/dockerbuild.sh $1",
"build:server": "lerna bootstrap --ignore 'coinstac-{client-core,decentralized-algorithm-integration,simulator,storage-proxy,ui}'",
"clean": "lerna clean",
"devdata": "cd packages/coinstac-api-server/ && npm run test-setup",
"cidata": "cd packages/coinstac-api-server/ && node test/test-setup.js",
"getconfig": "./scripts/aws-secret-fetch.sh",
"lint": "eslint '**/*.js' '**/*.jsx' '**/bin/*'",
"lintfix": "eslint --fix '**/*.js' '**/*.jsx' '**/bin/*'",
"publish": "lerna publish",
"server": "cd packages/coinstac-server/ && npm start",
"server-ci": "cd packages/coinstac-server/ && npm start -- --no-images",
"start": "concurrently \"npm run api-server\" \"sleep 6 && npm run server\" \"npm run watch\" ",
"switch:prod": "cp packages/coinstac-desktop-app/config/local-production.json packages/coinstac-desktop-app/config/local.json",
"switch:dev": "cp packages/coinstac-desktop-app/config/local-development.json packages/coinstac-desktop-app/config/local.json",
"switch:local": "cp packages/coinstac-desktop-app/config/local-local.json packages/coinstac-desktop-app/config/local.json",
"switch:ci": "cp packages/coinstac-desktop-app/config/local-ci.json packages/coinstac-desktop-app/config/local.json",
"test": "lerna run test --concurrency=1",
"watch": "cd packages/coinstac-desktop-app/ && npm run watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MRN-Code/coinstac.git"
},
"keywords": [
"coins",
"coinstac",
"analysis",
"distributed",
"decentralized",
"differential",
"privacy"
],
"author": "TReNDS Development - The TReNDS Center <info@trendscenter.org> (https://trendscenter.org/)",
"contributors": [
"Chris Dieringer <cdaringe@gmail.org>",
"Cory Reed <swashcap@gmail.com>",
"Ross Kelly <rkelly@mrn.org>",
"Drew Landis <landis.d@gmail.com>",
"Sergey Plis <splis@mrn.org>",
"Dylan Martin <dylanrossmartin@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/trendscenter/coinstac/issues"
},
"homepage": "https://github.com/trendscenter/coinstac#readme",
"pre-commit": {
"colors": true,
"silent": false,
"run": [
"lint"
]
}
}