-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
41 lines (41 loc) · 903 Bytes
/
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
{
"name": "react-something-nice",
"version": "0.5.0",
"description": "",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx babel src --out-dir build",
"lint": "eslint --fix ./src --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xnt/react-something-nice.git"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"keywords": [
"messages",
"team",
"multipurpose",
"something nice",
"react"
],
"author": "Vicente Plata",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.0"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}