Blame view

package.json 1.5 KB
c67f755ea   Ryan Glover   Add support for p...
1
2
3
4
5
6
  {
    "name": "application-name",
    "version": "1.0.0",
    "description": "Application description.",
    "scripts": {
      "start": "meteor --settings settings-development.json",
f7c1860b5   tmcdeveloper   add basic accepta...
7
8
      "chimp-watch": "chimp --ddp=http://localhost:3000 --watch --mocha --path=tests",
      "chimp-test": "chimp --ddp=http://localhost:3000 --mocha --path=tests",
f6f8fcc89   Ryan Glover   refactor NPM scripts
9
10
      "staging": "meteor deploy staging.meteor.com --settings settings-development.json",
      "production": "meteor deploy production.meteor.com --settings settings-production.json"
c39994410   Ryan Glover   wip converting to...
11
    },
db5aba845   Ryan Glover   miscellaneous wor...
12
    "devDependencies": {},
f0c912bf1   tmcdeveloper   add method tests ...
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
    "eslintConfig": {
      "parserOptions": {
        "ecmaFeatures": {
          "jsx": true
        }
      },
      "plugins": [
        "meteor",
        "react"
      ],
      "extends": [
        "airbnb/base",
        "plugin:meteor/guide"
      ],
      "globals": {
        "$": false,
        "Accounts": false,
        "Bert": false,
        "browser": false,
        "expect": false,
        "Factory": false,
        "Meteor": false,
        "server": false,
        "SimpleSchema": false,
        "ValidatedMethod": false
      },
      "rules": {}
    },
    "devDependencies": {
f7c1860b5   tmcdeveloper   add basic accepta...
42
      "chimp": "^0.33.0",
f0c912bf1   tmcdeveloper   add method tests ...
43
44
45
46
47
48
49
50
51
      "eslint": "^2.6.0",
      "eslint-config-airbnb": "^6.2.0",
      "eslint-plugin-meteor": "^3.4.0",
      "eslint-plugin-react": "^4.2.3",
      "faker": "^3.1.0"
    },
    "dependencies": {
      "react": "^15.0.1",
      "react-addons-pure-render-mixin": "^15.0.1",
2b1ad7917   tmcdeveloper   wip moving to Met...
52
      "react-bootstrap": "^0.28.4",
f0c912bf1   tmcdeveloper   add method tests ...
53
      "react-dom": "^15.0.1",
b9fec275b   tmcdeveloper   add fix for activ...
54
      "react-komposer": "^1.7.1",
2b1ad7917   tmcdeveloper   wip moving to Met...
55
56
      "react-router": "^2.0.1",
      "react-router-bootstrap": "^0.20.1"
c67f755ea   Ryan Glover   Add support for p...
57
58
    }
  }