-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.94 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "Scooter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint ./",
"lint:diff": "git diff --name-only --cached --relative | grep '\\.js$' | xargs eslint",
"lint:fix": "eslint ./ --fix",
"lint:msg": "validate-commit-msg",
"config-dev": "cp environments/env.dev .env",
"config-prod": "cp environments/env.prod .env",
"prod": "npm run config-dev && npm rebuild && npm run build && npm start"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:diff -s",
"pre-push": "npm run lint -s",
"commit-msg": "npm run lint:msg"
}
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@zeit/next-css": "^1.0.1",
"bootstrap": "^4.3.1",
"cors": "^2.8.5",
"dotenv-webpack": "^1.7.0",
"firebase": "^5.11.1",
"font-awesome": "^4.7.0",
"formik": "^1.5.7",
"immer": "^3.1.2",
"moment": "^2.24.0",
"next": "^8.1.0",
"next-redux-saga": "^4.0.1",
"next-redux-wrapper": "^3.0.0-alpha.2",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.8",
"react-dom": "^16.8.6",
"react-google-maps": "^9.4.5",
"react-places-autocomplete": "^7.2.1",
"react-redux": "^7.0.3",
"react-table": "^6.10.0",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-saga": "^1.0.2",
"reduxsauce": "^1.1.0",
"reselect": "^4.0.0",
"yup": "^0.27.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.3.0",
"standard": "^12.0.1",
"validate-commit-msg": "^2.14.0"
},
"standard": {
"parser": "babel-eslint"
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"scope": {
"required": true,
"allowed": [
"assets",
"nav",
"redux",
"screens",
"services",
"setup"
],
"validate": true,
"multiple": false
},
"subjectPattern": ".+\\s-\\s.+",
"helpMessage": "Commit message format:\r\n\r\n<type>(<scope>): <subject>\r\n\r\nType:\r\n\r\nfeat: A new feature\r\nfix: A bug fix\r\ndocs: Documentation only changes\r\nstyle: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)\r\nrefactor: A code change that neither fixes a bug nor adds a feature\r\nperf: A code change that improves performance\r\ntest: Adding missing or correcting existing tests\r\nchore: Changes to the build process or auxiliary tools and libraries such as documentation generation\r\n\r\nScope:\r\n\r\nassets: Changes to icons / images / other media files\r\ngraphql: Changes to GraphQL logic\r\nnav: Changes to navigation, does not affect meaning of internal logic\r\nredux: Changes to reducers, sagas\r\nscreens: Changes to UI Components / UI styles\r\nservices: Changes to various app services (data provider, push, caching, etc..)\r\nsetup: Changes to app configuration (npm packages, react, expo, etc..)\r\n\r\nSubject format:\r\n\r\n\"<appmodule> - <changes description>\"\r\n\r\nMax subject length: 100\r\n",
"maxSubjectLength": 100,
"warnOnFail": false
}
}
}