This repository has been archived by the owner on Jun 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.36 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
{
"name": "rcbuild.info",
"version": "1.0.0",
"description": "Site for documenting quadcopter builds.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tannewt/rcbuild.info.git"
},
"author": "Scott Shawcroft",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tannewt/rcbuild.info/issues"
},
"homepage": "https://github.com/tannewt/rcbuild.info#readme",
"devDependencies": {
"babelify": "^6.1.3",
"eslint": "1.x.x",
"eslint-plugin-react": "3.x.x",
"grunt": "^0.4.5",
"grunt-browserify": "4.x.x",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-cssmin": "0.13.x",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-eslint": "17.x.x",
"grunt-exorcise": "^2.1.0"
},
"dependencies": {
"alt": "^0.17.1",
"axios": "^0.5.4",
"classnames": "^2.1.2",
"clone": "^1.0.2",
"js-cookie": "^2.0.2",
"json-stable-stringify": "^1.0.0",
"react": "^0.13.3",
"react-autosuggest": "^1.18.3",
"react-bootstrap": "0.24.x",
"react-router": "^0.13.3",
"react-router-bootstrap": "^0.18.0",
"react-typeahead": "^1.1.3",
"react-youtube": "^4.1.0",
"superagent": "^1.2.0",
"underscore": "^1.8.3"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"strict": [
2,
"global"
],
"react/display-name": 0,
"react/jsx-boolean-value": 1,
"react/jsx-no-undef": 1,
"react/jsx-quotes": 1,
"react/jsx-sort-prop-types": 1,
"react/jsx-sort-props": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-danger": 1,
"react/no-did-mount-set-state": [
1,
"allow-in-func"
],
"react/no-did-update-set-state": 1,
"react/no-multi-comp": 1,
"react/no-unknown-property": 1,
"react/prop-types": 1,
"react/react-in-jsx-scope": 1,
"react/require-extension": 1,
"react/self-closing-comp": 1,
"react/sort-comp": 1,
"react/wrap-multilines": 1
},
"ecmaFeatures": {
"modules": true,
"jsx": true
},
"plugins": [
"react"
],
"globals": {
"ga": false
}
}
}