-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "load-monitor-meteor",
"description": "A sample meteor.js app with highcharts",
"license": "MIT",
"author": "Vianney Carel <[email protected]> (https://vianneycarel.me)",
"private": true,
"engines": {
"node": ">=12"
},
"scripts": {
"lint": "eslint client imports server test",
"start": "meteor run",
"test": "meteor test --once --driver-package dispatch:mocha",
"test:watch": "TEST_WATCH=1 meteor test --driver-package dispatch:mocha"
},
"dependencies": {
"@babel/runtime": "^7.10.2",
"highcharts": "6.1.0",
"jquery": "^3.5.1",
"meteor-node-stubs": "1.0.0",
"moment": "2.26.0",
"react": "16.13.1",
"react-addons-pure-render-mixin": "15.6.2",
"react-dom": "16.13.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.0.5",
"sinon": "^9.0.2"
}
}