-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
87 lines (87 loc) · 1.68 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
{
"name": "sails-react-webpack",
"private": false,
"version": "1.1.0",
"description": "A Sails, React & Webpack boilerplate",
"preferGlobal": true,
"bin": {
"sails-react-webpack": "bin/sails-react-webpack.js"
},
"engines": {
"node": ">= 0.10.0",
"npm": ">= 1.4.0"
},
"keywords": [
"sails",
"react",
"webpack",
"boilerplate"
],
"scripts": {
"start": "node bin/sails-react-webpack",
"lint-staged": "lint-staged",
"lint": "xo"
},
"lint-staged": {
"linters": {
"**/*.js": [
"prettier --write",
"git add",
"xo"
]
}
},
"precommit": {
"run": [
"lint-staged"
]
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/markmur/sails-react-webpack.git"
},
"author": "Mark Murray <[email protected]> (https://github.com/markmur)",
"license": "MIT",
"dependencies": {
"colors": "^1.1.2",
"inquirer": "^1.1.3",
"ncp": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-xo": "^0.22.2",
"eslint-config-xo-react": "^0.16.0",
"eslint-plugin-react": "^7.9.1",
"lint-staged": "^7.1.3",
"pre-commit": "^1.2.2",
"prettier": "^1.13.4",
"prettier-eslint": "^8.8.1",
"xo": "^0.21.1"
},
"xo": {
"parser": "babel-eslint",
"extends": [
"xo-react"
],
"envs": [
"browser",
"node"
],
"prettier": true,
"space": true,
"plugins": [
"react"
],
"rules": {
"camelcase": [
"error",
{
"properties": "never"
}
]
}
}
}