-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
105 lines (105 loc) · 3.31 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
{
"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 --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 --require @babel/register",
"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.6.4",
"@babel/core": "^7.6.4",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/register": "^7.6.2",
"@testing-library/react": "^9.3.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"chai-http": "^4.3.0",
"chromedriver": "^77.0.0",
"coveralls": "^3.0.7",
"css-loader": "^3.2.0",
"cucumber": "^5.1.0",
"cucumber-pretty": "^1.5.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.6.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-react": "^7.16.0",
"expect": "^24.9.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jsdom": "^15.2.0",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.2",
"nightwatch": "^0.9.21",
"nightwatch-cucumber": "^9.1.3",
"node-sass": "^4.13.0",
"nyc": "^14.1.1",
"react-addons-test-utils": "^15.6.2",
"redux-test-utils": "^0.3.0",
"sass-loader": "^8.0.0",
"selenium-server": "^3.141.59",
"style-loader": "^1.0.0",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"testdouble": "^3.12.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"connected-react-router": "^6.5.2",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"g": "^2.0.1",
"history": "^4.10.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"pm2": "^4.1.2",
"react": "^16.11.0",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^16.11.0",
"react-player": "^1.13.0",
"react-redux": "^7.1.1",
"react-router": "^5.1.2",
"redux": "^4.0.4",
"redux-saga": "^1.1.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"nyc": {
"extension": [
".jsx",
".js"
]
},
"engines": {
"node": "8.11.4"
},
"cacheDirectories": []
}