This repository has been archived by the owner on Apr 3, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
executable file
·127 lines (127 loc) · 3.84 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "oscafrica.org",
"version": "0.1.0",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@storybook/addon-storysource": "^5.3.19",
"classnames": "2.2.6",
"gatsby": "2.18.6",
"gatsby-plugin-gtag": "^1.0.13",
"gatsby-plugin-manifest": "2.2.27",
"gatsby-plugin-offline": "3.0.21",
"gatsby-plugin-postcss": "2.1.15",
"gatsby-plugin-purgecss": "4.0.1",
"gatsby-plugin-react-helmet": "3.1.14",
"gatsby-plugin-sitemap": "^2.4.11",
"graphql": "14.5.8",
"opencollective": "1.0.3",
"prop-types": "15.7.2",
"react-datepicker": "^2.16.0",
"react-dom": "16.11.0",
"react-helmet": "5.2.1"
},
"keywords": [
"gatsby",
"tailwind",
"tailwindcss",
"purgecss"
],
"license": "MIT",
"scripts": {
"analyze:lint": "eslint --ext .jsx --ext .js src",
"analyze:prettier": "prettier --list-different '**/*.{js,css,md,json}'",
"analyze": "npm run analyze:lint && npm run analyze:prettier",
"build": "gatsby build",
"dev": "gatsby develop",
"fix:lint": "eslint --ext .jsx --ext .js src --fix",
"fix:prettier": "prettier --write '**/*.{js,css,md,json}'",
"fix": "npm run fix:lint && npm run fix:prettier",
"start": "npm run develop",
"serve": "gatsby serve",
"commit": "git-cz",
"storybook": "start-storybook",
"cypress:open": "cross-env TZ=UTC cypress open",
"cypress:run": "cross-env TZ=UTC cypress run",
"test": "nyc --silent cross-env npm run test:unit && npm run test:e2e",
"test:unit": "jest",
"test:e2e": "start-server-and-test dev http://localhost:8000 cypress:run"
},
"devDependencies": {
"@cypress/code-coverage": "^1.14.0",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/react": "5.2.8",
"@typescript-eslint/eslint-plugin": "2.7.0",
"@typescript-eslint/parser": "2.7.0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-preset-gatsby": "^0.2.36",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"commitizen": "^4.1.2",
"coveralls": "^3.1.0",
"cross-env": "^6.0.3",
"cssnano": "^4.1.10",
"cypress": "^4.10.0",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-react-app": "5.0.2",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-flowtype": "4.4.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.3.0",
"husky": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"istanbul-lib-coverage": "^2.0.5",
"jest": "^24.9.0",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"lint-staged": "^9.5.0",
"nyc": "^14.1.1",
"prettier": "1.19.1",
"react": "^16.13.1",
"react-is": "^16.13.1",
"start-server-and-test": "^1.11.2",
"tailwindcss": "1.1.3",
"typescript": "3.7.2"
},
"nyc": {
"report-dir": "coverage/cypress-coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/oscafrica/oscafrica.org"
},
"bugs": {
"url": "https://github.com/oscafrica/oscafrica.org/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "npm run fix:lint",
"*.{js,json,md,graphql}": [
"npm run fix:prettier",
"git add"
]
}
}