-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.87 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
{
"name": "TeamAssist",
"version": "0.0.7",
"author": "Drew Deal",
"repository": {
"type": "git",
"url": "https://github.com/devopsdojoconsortium/TeamAssist"
},
"license": "MIT",
"private": true,
"contributors": [
{
"name": "OSS maintainer",
"email": "[email protected]"
}
],
"dependencies": {
"@cycle/dom": "^17.4.0",
"@cycle/history": "^7.3.0",
"@cycle/isolate": "^3.3.0",
"@cycle/rxjs-run": "^4.0.0-rc.5",
"@cycle/storage": "^5.0.3",
"body-parser": "1.20.3",
"dom-to-image": "2.6.0",
"exceljs": "^3.0.4",
"express": "^4.17.1",
"history": "^4.10.1",
"jquery": "^3.3.1",
"js-cookie": "2.2.0",
"marked": "^4.0.2",
"moment": "^2.22.2",
"murmur": "0.0.2",
"rimraf": "^3.0.0",
"rxjs": "^5.5.11",
"uuid": "^3.2.1",
"xstream": "^11.7.0"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/register": "^7.7.4",
"apickli": "^2.1.0",
"babelify": "^10.0.0",
"browserify": "17.0.0",
"chai": "^3.5.0",
"chai-virtual-dom": "^1.0.0",
"cucumber": "^4.1.0",
"eslint": "^7.0.0",
"eslint-watch": "^7.0.0",
"express": "^4.16.1",
"jsonfile": "^6.0.1",
"live-server": "^1.2.1",
"mkdirp": "^0.5.1",
"mocha": "5.2.0",
"nodemon": "^2.0.1",
"npm-run-all": "^1.4.0",
"read-file": "0.2.0",
"uglify-js": "3.1.5",
"watchify": "^3.11.1"
},
"scripts": {
"build-debug": "mkdirp dist && browserify src/app.js -d -t babelify -o dist/app.js",
"cucumber": "cucumber-js src/test/cucumber/features/ -r src/test/cucumber/steps/",
"watch:js": "mkdirp dist && watchify src/app.js -t babelify --outfile dist/app.js -dv",
"serve": "live-server ./ --open=debug.html --host=localhost --watch=dist/app.js --cors",
"uglify": "uglifyjs dist/app.js -c drop_console=true -o dist/app.min.js",
"build": "npm run build-debug && npm run uglify",
"start": "npm-run-all --parallel watch:js serve",
"start-lim": "npm-run-all --parallel watch:js",
"mocha": "mocha --compilers js:@babel/register src/test/*.js || true",
"mochaBab": "mocha src/test/*.js || true",
"test": "npm run mocha && npm run lint",
"lint": "eslint src/ || true",
"wmocha": "mocha -w --compilers js:@babel/register src/test/*.js || true",
"wlint": "esw src/ --quiet -w",
"jenkins-mocha": "mocha --compilers js:@babel/register src/test/*.js",
"excelServe": "babel-node ./excelService/serve",
"excelServe:prod": "node ./dist/serve",
"excelDev": "NODE_ENV=development npm-run-all excelServe",
"clean": "rimraf dist",
"excelBuild": "babel ./src --out-dir dist",
"excelProd": "NODE_ENV=production npm-run-all clean build excelServe:prod",
"excelWatch": "nodemon"
}
}