forked from carloscuesta/gitmoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.03 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
{
"name": "gitmojis",
"version": "3.0.0",
"description": "An emoji guide for your commit messages.",
"private": false,
"main": "src/data/gitmojis.json",
"files": ["src/data/gitmojis.json"],
"scripts": {
"build": "next build",
"dev": "next dev",
"flow": "flow",
"lint": "prettier --check src/**/*.{js,json,scss}",
"start": "next start",
"test": "jest --coverage",
"validate:gitmojis": "jsonlint ./src/data/gitmojis.json -V ./src/data/schema.json",
"prepublishOnly": "git checkout master && git pull && npm run validate:gitmojis"
},
"devDependencies": {
"@babel/preset-flow": "^7.0.0",
"@zeit/next-sass": "^1.0.1",
"clipboard": "^2.0.4",
"next": "9.5.5",
"node-sass": "^4.13.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "^16.11.0",
"flow-bin": "^0.135.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"jsonlint": "^1.6.3",
"lint-staged": "^10.0.0-1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "2.1.2"
},
"author": "Carlos Cuesta",
"license": "MIT",
"bugs": {
"url": "https://github.com/carloscuesta/gitmoji/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carloscuesta/gitmoji.git"
},
"homepage": "https://gitmoji.carloscuesta.me",
"keywords": [
"gitmoji",
"emoji",
"carloscuesta",
"commit"
],
"prettier": {
"semi": false,
"singleQuote": true,
"arrowParens": "always"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write src/**/*.{js,json,scss}",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run flow && npm run test"
}
},
"babel": {
"presets": [
"next/babel",
"@babel/preset-flow"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testMatch": [
"**/*.(spec).(js)"
],
"moduleNameMapper": {
"\\.(scss)$": "identity-obj-proxy"
}
}
}