-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 2.26 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
{
"name": "review-me",
"private": true,
"scripts": {
"start": "meteor --settings settings-development.json",
"lint": "eslint .",
"coverage-app-unit": "spacejam --driver-package=practicalmeteor:mocha-console-runner test --coverage 'out_lcovonly out_coverage out_html' --port 3004",
"pretest": "npm run lint --silent",
"staging": "xervo env set METEOR_SETTINGS \"$(cat settings-staging.json)\" -p 'App - Staging' && xervo deploy -f -p 'App - Staging'",
"production": "xervo env set METEOR_SETTINGS \"$(cat settings-production.json)\" -p 'App - Production' && xervo deploy -f -p 'App - Production'"
},
"dependencies": {
"axios": "^0.15.3",
"babel-runtime": "^6.20.0",
"bcrypt": "^1.0.2",
"bson-objectid": "^1.1.5",
"eslint": "^3.18.0",
"eslint-plugin-meteor": "^4.0.1",
"faker": "^4.1.0",
"lodash": "^4.17.4",
"meteor-node-stubs": "~0.2.4",
"react": "^15.5.4",
"react-addons-pure-render-mixin": "^15.5.2",
"react-bootstrap": "^0.30.8",
"react-bootstrap-sweetalert": "^3.0.0",
"react-dom": "^15.5.4",
"react-stars": "^2.1.0",
"sha3": "^1.2.0",
"url-parse": "^1.1.8"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^7.1.1",
"coveralls": "^2.13.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-meteor": "^0.3.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^6.10.0",
"istanbul": "^0.4.5",
"mocha-lcov-reporter": "^1.3.0",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"spacejam": "https://github.com/serut/spacejam/tarball/windows-suppport-rc4"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"import",
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"settings": {
"meteor/no-session": "off",
"import/no-extraneous-dependencies": "off",
"import/resolver": "meteor"
},
"rules": {
"linebreak-style": 0,
"indent": 4
}
}
}