-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.29 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
{
"name": "dbb-mobile-web",
"version": "1.0.0",
"description": "DBB Mobile WebView Web",
"main": "webpack.config.js",
"private": true,
"sideEffects": [
"./src/home/index.js",
"*.css"
],
"scripts": {
"server": "webpack-dev-server --config webpack.dev.js --devtool eval-source-map --progress --colors --hot --inline --content-base ./app/ --port 8000",
"start": "webpack --watch --config webpack.dev.js",
"dev": "webpack --config webpack.dev.js",
"prod": "webpack --config webpack.prod.js",
"protractor": "protractor e2e/protractor.conf.js",
"api-docs": "raml2html ./mock/api.raml > ./mock/api.html",
"api-mock": "raml-mocker",
"api-watch": "chokidar \"./mock/**/*.raml\" -c \"npm run build\"",
"test-w": "jest --watch",
"test-up": "jest --updateSnapshot",
"test": "jest"
},
"keywords": [
"DBB",
"Mobile",
"WebView",
"Web"
],
"author": "Simon Jun Sheng Liu",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@reactivex/rxjs": "^6.3.3",
"@xbl/raml-mocker": "^1.0.11",
"acorn": "^6.0.2",
"angular": "^1.7.5",
"angular-mocks": "^1.7.5",
"angular-translate-loader-static-files": "^2.18.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-angularjs-annotate": "^0.9.0",
"chokidar-cli": "^1.2.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"eslint": "^5.7.0",
"eslint-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"jest-cli": "^23.6.0",
"jest-transform-stub": "^1.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.3.0",
"protractor": "^5.4.1",
"ramda": "^0.25.0",
"raml2html": "^7.2.0",
"raw-loader": "^0.5.1",
"regenerator-runtime": "^0.12.1",
"rxjs-compat": "^6.3.3",
"style-loader": "^0.23.1",
"stylelint": "^9.7.1",
"stylelint-config-recommended": "^2.1.0",
"ts-loader": "^5.2.2",
"typescript": "^3.1.3",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
}
}