-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "osca-website",
"description": "Website for Open Source Community Africa",
"version": "1.0.0",
"author": "Open Source Community Africa <[email protected]>",
"keywords": [
"osca",
"oscafrica",
"reactjs",
"nextjs",
"tailwind",
"tailwindcss",
"typescript",
"storybook"
],
"engines": {
"node": ">=16.0.0"
},
"license": "MIT",
"scripts": {
"build:tailwind": "tailwindcss build src/styles/storybook.css -o src/styles/tailwind.output.css",
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"storybook": "npm run build:tailwind && start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@babel/core": "^7.14.3",
"@types/styled-components": "^5.1.9",
"autoprefixer": "^10",
"classnames": "^2.3.1",
"cssnano": "^5.0.5",
"next": "^12.1.0",
"nprogress": "^0.2.0",
"postcss": "^8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"styled-components": "^5.3.0",
"tailwindcss": "^2.2.4"
},
"devDependencies": {
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.2.9",
"@types/classnames": "^2.3.0",
"@types/node": "^15.6.1",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"babel-loader": "^8.2.2",
"eslint": "^8.33.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"globby": "^11.0.4",
"storybook-css-modules-preset": "^1.1.1",
"typescript": "4.3"
}
}