-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
71 lines (71 loc) · 2.21 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
{
"name": "web-api-confluence-dashboard",
"version": "0.0.1",
"license": "BSD-3-Clause",
"description": "Web API Confluence Dashboard",
"scripts": {
"coverage": "npm run coverageNode && npm run coverageWeb",
"coverageNode": "JASMINE_CONFIG_PATH=./config/jasmine.json nyc --nycrc-path ./config/nyc.config.js jasmine",
"coverageWeb": "karma start ./config/karma.coverage.conf.js",
"deploy": "bash scripts/deploy.sh",
"lint": "eslint .",
"start": "node main/serve.js HTTP PROD",
"serve": "bash scripts/serve.sh",
"test": "npm run testNode && npm run testWeb",
"testNode": "JASMINE_CONFIG_PATH=./config/jasmine.json jasmine",
"testWeb": "karma start ./config/karma.all.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChromeLabs/confluence.git"
},
"keywords": [
"javascript",
"web api",
"tools"
],
"author": "Mark Dittmer, Jing Tao",
"homepage": "https://web-confluence.appspot.com/",
"browserslist": "since 2018 and last 2 versions",
"engines": {
"node": "12.x"
},
"dependencies": {
"@uirouter/angularjs": "1.0.30",
"angular": "1.8.2",
"d3": "5.16.0",
"foam2": "git+https://github.com/foam-framework/foam2.git#confluence",
"materialize-css": "1.0.0",
"object-graph-js": "git+https://github.com/mdittmer/object-graph-js.git"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.7",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"codecov": "3.8.3",
"css-loader": "5.2.7",
"doctoc": "2.0.1",
"eslint": "7.32.0",
"eslint-config-google": "0.14.0",
"file-loader": "6.2.0",
"html-loader": "1.3.2",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine": "3.7.0",
"jasmine-core": "3.7.1",
"json-loader": "0.5.7",
"karma": "6.3.4",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-firefox-launcher": "2.1.2",
"karma-jasmine": "4.0.1",
"karma-webpack": "4.0.2",
"nyc": "15.1.0",
"style-loader": "2.0.0",
"terser-webpack-plugin": "4.2.3",
"webpack": "4.46.0",
"webpack-cli": "4.7.2",
"webpack-merge": "5.8.0",
"worker-loader": "3.0.8"
}
}