-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.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
{
"name": "occ-dev-server",
"version": "0.0.1",
"scripts": {
"api": "node api",
"test:headless": "karma start --browsers CustomChromeHeadless karma/karma.conf.js",
"test": "karma start --browsers CustomChrome karma/karma.conf.js",
"start": "npm-run-all --parallel api bundle:watch test:headless",
"start:chrome-frame": "npm-run-all --parallel api bundle:watch test",
"test-all": "npm-run-all --parallel api bundle test",
"grab-occ-schema": "node lib/grab-occ-schema",
"grab-libs": "node lib/grab-libs",
"grab-pages-responses": "node lib/grab-pages-responses",
"grab-schema": "npm-run-all grab-occ-schema grab-pages-responses",
"bundle": "node webpack/runner",
"bundle:watch": "node lib/bundle-src --watch"
},
"preferGlobal": true,
"bin": "./index.js",
"devDependencies": {
"chai": "^4.1.2",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-requirejs": "^1.1.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3"
},
"dependencies": {
"@babel/core": "7.0.0-rc.1",
"@babel/preset-env": "7.0.0-rc.1",
"@octokit/rest": "15.9.5",
"babel-loader": "8.0.0-beta.4",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"body-parser": "^1.18.3",
"bootstrap": "3.4.1",
"caporal": "^1.3.0",
"css-loader": "^1.0.0",
"express": "^4.16.3",
"fs-extra": "^7.0.0",
"fstream": "^1.0.12",
"glob": "^7.1.2",
"inquirer": "^6.2.0",
"karma-mocha-reporter": "^2.2.5",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"request": "^2.88.0",
"requirejs": "^2.3.5",
"serialize-javascript": "^2.1.1",
"source-map": "^0.7.3",
"unzip": "^0.1.11",
"webpack": "4.16.5"
}
}