forked from metricio/metricio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.79 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
{
"name": "circle-ci-wall",
"version": "1.2.0",
"description": "forked from metricio/metricio",
"main": "app.js",
"scripts": {
"pretest": "docker-compose up -d",
"prestart": "docker-compose up -d",
"preproduction": "docker-compose up -d",
"start": "REDIS_SERVER_PORT=3001 babel-node app.js",
"production": "cross-env NODE_ENV=production webpack -p && cross-env NODE_ENV=production REDIS_SERVER_PORT=3001 babel-node app.js",
"test": "REDIS_SERVER_PORT=3001 ava test -v",
"lint": "eslint .",
"docker-build": "docker build -t epages/circle-ci-wall:latest ."
},
"author": {
"name": "Danny Croft",
"email": "os@dannycroft.co.uk",
"url": "https://www.dannycroft.co.uk"
},
"repository": {
"type": "git",
"url": "https://github.com/dannycroft/metricio"
},
"license": "MIT",
"dependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/node": "7.4.5",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.6",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"codecov": "^3.5.0",
"connect-redis": "^3.4.1",
"css-loader": "^3.0.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.16.2",
"googleapis": "^40.0.0",
"ioredis": "^4.10.0",
"moment": "^2.24.0",
"node-resque": "^5.5.4",
"node-sass": "4.12.0",
"node-schedule": "^1.3.2",
"numeral": "2.0.6",
"prop-types": "^15.7.2",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-sparklines": "1.7.0",
"redis": "2.8.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"require-all": "3.0.0",
"sass-loader": "^7.1.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"style-loader": "0.23.1",
"victory": "^32.2.3",
"webpack": "^4.34.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/polyfill": "7.4.0",
"ava": "1.4.1",
"babel-eslint": "10.0.1",
"cross-env": "5.2.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.11.2",
"eslint": "5.15.3",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"ignore-styles": "5.0.1",
"jsdom": "14.0.0",
"mock-socket": "8.0.5",
"proxyquire": "2.1.0",
"sinon": "7.3.1",
"webpack-cli": "3.3.0",
"webpack-dev-middleware": "3.6.1"
},
"ava": {
"files": [
"./test/**/*.test.js"
],
"sources": [
"./test/**/*.{js,jsx}"
],
"concurrency": 5,
"failFast": true,
"require": [
"@babel/register",
"@babel/polyfill",
"ignore-styles",
"./test/helpers/browser.js",
"./test/helpers/enzyme.js"
]
}
}