-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
121 lines (121 loc) · 3.86 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "reactredux",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"prestart": "pm2 start src/server/ecosystem.config.js",
"start": "npm run build:dll:dev && webpack -d --watch --progress --colors",
"dev": "npm run build:dll:prod && webpack -d --progress --colors",
"prod": "npm run build:dll:prod && webpack -p --watch --progress --colors",
"build:dll:dev": "webpack -d --config webpack.library.config.js",
"build:dll:prod": "webpack -p --config webpack.library.config.js",
"serve": "pm2 start src/server/ecosystem.config.js",
"test": "nyc mocha",
"featuretest": "./node_modules/.bin/nightwatch",
"featuretest:debug": "node --inspect-brk node_modules/.bin/nightwatch",
"lint": "npm run jslint && npm run jsonlint && npm run csslint",
"jslint": "eslint ./src/client ./src/server ./test/unit ./test/features --fix",
"jsonlint": "eslint ./ --ext .json",
"csslint": "stylelint ./src/client/**/*.scss --syntax scss --fix",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"heroku-postbuild": "npm run prod",
"heroku": "npm run serve && pm2 logs"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.0.0-rc.2",
"@babel/core": "^7.0.0-rc.2",
"@babel/polyfill": "^7.0.0-rc.2",
"@babel/preset-env": "^7.0.0-rc.2",
"@babel/preset-react": "^7.0.0-rc.2",
"@babel/register": "^7.0.0-rc.2",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.0-beta.4",
"babel-polyfill": "^6.26.0",
"chai": "^4.1.2",
"chai-enzyme": "^1.0.0-beta.1",
"chai-http": "^4.0.0",
"chromedriver": "^2.41.0",
"coveralls": "^3.0.2",
"css-loader": "^1.0.0",
"cucumber": "^4.2.1",
"cucumber-pretty": "^1.4.4",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^5.4.0",
"eslint-plugin-json": "^1.2.1",
"eslint-plugin-react": "^7.11.1",
"expect": "^23.5.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^0.5.5",
"jsdom": "^12.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"nightwatch": "^0.9.21",
"nightwatch-cucumber": "^9.1.2",
"node-sass": "^4.9.3",
"nyc": "^12.0.2",
"react-addons-test-utils": "^15.6.2",
"react-testing-library": "^5.1.0",
"redux-test-utils": "^0.2.2",
"sass-loader": "^7.1.0",
"selenium-server": "^3.14.0",
"style-loader": "^0.22.1",
"stylelint": "^9.5.0",
"stylelint-config-standard": "^18.2.0",
"testdouble": "^3.8.1",
"to-string-loader": "^1.1.5",
"uglifyjs-webpack-plugin": "^1.3.0",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.8",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-filter-warnings-plugin": "^1.2.1"
},
"dependencies": {
"@angular/common": "^6.1.10",
"@angular/compiler": "^6.1.10",
"@angular/core": "^6.1.10",
"@angular/forms": "^6.1.10",
"@angular/http": "^6.1.10",
"@angular/platform-browser": "^6.1.10",
"@angular/platform-browser-dynamic": "^6.1.10",
"@angular/router": "^6.1.10",
"@types/core-js": "^2.5.0",
"@types/jquery": "^3.3.29",
"@types/node": "^11.10.4",
"awesome-typescript-loader": "^5.1.1",
"body-parser": "^1.18.3",
"connected-react-router": "^6.3.1",
"core-js": "^2.4.1",
"express": "^4.16.3",
"history": "^4.7.2",
"pm2": "^3.0.4",
"react": "^16.4.2",
"react-bootstrap": "^0.32.3",
"react-dom": "^16.4.2",
"react-player": "^1.8.0",
"react-redux": "^6.0.1",
"react-router": "^4.3.1",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rxjs": "^6.2.2",
"typescript": "^3.3.3333",
"vue": "^2.6.8",
"zone.js": "^0.8.29"
},
"nyc": {
"extension": [
".jsx",
".js"
]
},
"engines": {
"node": "8.11.4"
},
"cacheDirectories": []
}