-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "rhytune-lite",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"lint": "eslint . --fix",
"pretest": "npm run lint --silent"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@blueprintjs/core": "^3.10.0",
"bcrypt": "^3.0.3",
"meteor-node-stubs": "^0.4.1",
"prop-types": "^15.6.2",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-mounter": "^1.2.0",
"simpl-schema": "^1.5.3"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^10.0.1",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-meteor": "^5.1.0",
"eslint-plugin-react": "^7.11.1"
},
"eslintConfig": {
"extends": "@meteorjs/eslint-config-meteor",
"rules": {
"semi": 2,
"no-unused-vars": "off",
"no-console": "off",
"import/prefer-default-export": "off",
"class-methods-use-this": "off",
"react/destructuring-assignment": "off",
"react/prop-types": "off"
},
"globals": {
"Meteor": true,
"FlowRouter": true,
"describe": true,
"it": true
}
}
}