forked from oscafrica/osf-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·112 lines (112 loc) · 3.57 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
{
"name": "osf-website",
"description": "Website for OSCA Open Source Festival",
"version": "3.0.141",
"author": "OSCAFRICA",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@storybook/addon-storysource": "^5.2.8",
"classnames": "2.2.6",
"gatsby": "2.18.6",
"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",
"graphql": "14.5.8",
"opencollective": "1.0.3",
"prop-types": "15.7.2",
"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 .",
"analyze:prettier": "prettier --list-different '**/*.{js,css,md,json}'",
"analyze": "npm run analyze:lint && npm run analyze:prettier",
"build": "gatsby build",
"develop": "gatsby develop",
"fix:lint": "eslint --ext .jsx --ext .js . --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 develop http://localhost:8000 cypress:run"
},
"devDependencies": {
"@storybook/addon-docs": "^5.2.8",
"@storybook/addon-viewport": "^5.2.8",
"@storybook/react": "5.2.8",
"@cypress/code-coverage": "^1.10.2",
"@typescript-eslint/eslint-plugin": "2.7.0",
"@typescript-eslint/parser": "2.7.0",
"babel-eslint": "10.0.3",
"babel-loader": "^8.0.6",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"babel-jest": "^24.9.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-preset-gatsby": "^0.2.23",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"cssnano": "^4.1.10",
"cypress": "^3.7.0",
"dotenv": "8.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.6.0",
"eslint-config-react-app": "5.0.2",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-cypress": "^2.7.0",
"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",
"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",
"nyc": "^14.1.1",
"prettier": "1.19.1",
"react": "^16.12.0",
"react-is": "^16.12.0",
"start-server-and-test": "^1.10.6",
"tailwindcss": "1.1.3",
"typescript": "3.7.2"
},
"nyc": {
"report-dir": "coverage/cypress-coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/taylorbryant/gatsby-starter-tailwind"
},
"bugs": {
"url": "https://github.com/taylorbryant/gatsby-starter-tailwind/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}