-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
91 lines (91 loc) · 2.83 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "omniboard",
"version": "2.16.1",
"description": "Web-based dashboard for Sacred",
"keywords": [
"dashboard",
"sacred",
"manage",
"UI",
"web-based"
],
"bin": {
"omniboard": "./dist/start.js"
},
"author": "Vivek Ratnavel Subramanian <vivekratnavel.s@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vivekratnavel/omniboard.git"
},
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"archiver": "^3.1.1",
"body-parser": "~1.19.0",
"cross-env": "^5.2.0",
"express": "~4.17.1",
"express-restify-mongoose": "^5.0.0",
"express-session": "^1.16.2",
"gridfs-stream": "^1.1.1",
"lodash.isplainobject": "^4.0.6",
"method-override": "^3.0.0",
"mongoose": "^5.7.5",
"moredots": "^1.0.1",
"morgan": "~1.9.1",
"npm-run-all": "^4.1.5",
"yargs": "^13.3.0",
"@semantic-release/npm": "^5.2.0-beta.6"
},
"scripts": {
"start": "babel-node server",
"debug": "nodemon --ignore './web/' --ignore './dist' server --exec babel-node --inspect",
"server": "nodemon --ignore './web/' --ignore './dist' server --exec babel-node",
"client": "cd web && npm run start",
"clean:server": "rm -rf ./dist/*",
"clean:web": "rm -rf ./web/build/*",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"prod": "cross-env NODE_ENV=production node dist/index.js",
"build:web": "yarn run clean:web && cd web && yarn run build",
"build:server": "yarn run clean:server && babel server -d dist",
"build": "run-s build:*",
"test-ci": "cd web && npm run lint && CI=true npm run test",
"prepublishOnly": "rm -rf ./node_modules ./web/node_modules && cd web && yarn install --prod && cd .. && yarn install --prod && yarn run build",
"report-coverage": "cd web && npm run report-coverage",
"cm": "git-cz"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^7.0.0",
"@semantic-release/git": "^7.1.0-beta.3",
"@semantic-release/github": "^5.5.0-beta.1",
"@semantic-release/release-notes-generator": "^7.2.1",
"concurrently": "^4.1.1",
"husky": "^3.0.2",
"lint-staged": "^10.0.8",
"node-env-run": "^3.0.2",
"nodemon": "^1.19.1",
"semantic-release": "^16.0.0-beta.22",
"travis-deploy-once": "^5.0.11",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.0.2"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"main": "server/index.js",
"husky": {
"hooks": {
"pre-commit": "cd web && lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}