-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.71 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
{
"name": "API-Viewer",
"description": "API viewer can be used as a quick documentation and demo for apis.",
"version": "0.10",
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:deepak-jacob/api-viewer.git"
},
"scripts": {
"test": "karma start karma.config.js --no-single-run",
"dev": "webpack-dev-server --content-base build/",
"build": "webpack --optimize-minimize",
"serve": "http-server -p 8000 build/",
"lint": "eslint . --ext .js"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.0",
"babel-preset-stage-3": "^6.22.0",
"chai": "^3.5.0",
"css-loader": "^0.28.1",
"eslint": "^3.17.0",
"eslint-loader": "^1.3.0",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.19.0",
"http-server": "^0.10.0",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"sass-loader": "^6.0.2",
"style-loader": "^0.17.0",
"webpack": "^2.2.1",
"webpack-core": "^0.6.9",
"webpack-dev-server": "^2.4.1"
},
"license": "UNLICENSED",
"dependencies": {
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"prismjs": "^1.6.0",
"rxjs": "^5.3.0",
"webpack-visualizer-plugin": "^0.1.11",
"whatwg-fetch": "^2.0.3"
}
}