-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
94 lines (94 loc) · 3.04 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
{
"name": "zwift-second-screen",
"version": "0.2.8",
"description": "Second Screen companion application for Zwift",
"main": "main.js",
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"postbuild": "sw-precache --root=public",
"prepublishOnly": "npm run build",
"lint": "eslint --ext js --ext jsx src || exit 0",
"dev-server": "nodemon index.js",
"dev-client": "webpack-dev-server",
"dev": "concurrently --kill-others \"npm run dev-server\" \"npm run dev-client\"",
"start": "node index.js",
"electron": "electron .",
"test:ui": "jest --watch --config=src/jest.json",
"test:server": "jest --watch --config=server/jest.json",
"test:ci": "npm run test:ui -- --watch=false&&npm run test:server -- --watch=false"
},
"repository": {
"type": "git",
"url": "https://github.com/wtrl-Racing/zwift-second-screen"
},
"author": "WTRL Racing",
"license": "MIT",
"homepage": "https://github.com/wtrl-Racing/zwift-second-screen",
"engines": {
"node": ">=7.0.0"
},
"dependencies": {
"body-parser": "^1.16.0",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.1",
"express-ws": "^2.0.0",
"guid": "0.0.12",
"moment": "^2.17.1",
"node-cache": "^4.1.1",
"nosleep.js": "^0.7.0",
"redis": "^2.8.0",
"strava-live-segments": "latest",
"xml2js": "^0.4.19",
"zwift-mobile-api": "latest"
},
"devDependencies": {
"axios": ">=0.19.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.20.0",
"classnames": "^2.2.5",
"concurrently": "^3.1.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "0.26.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "0.9.0",
"history": "^4.7.2",
"html-webpack-plugin": "^2.26.0",
"jest": "^22.4.3",
"nodemon": "^1.11.0",
"open": "0.0.5",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.2.2",
"prop-types": "^15.6.0",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-slider": "^0.7.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"request": "^2.85.0",
"sinon": "^4.4.8",
"style-loader": "0.13.1",
"sw-precache": "^5.2.1",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-cleanup-plugin": "^0.4.1",
"webpack-dashboard": "^0.2.1",
"webpack-dev-server": "1.16.2"
}
}