-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"name": "frontend-starter",
"version": "2.0.0",
"repository": "https://github.com/halvardssm/frontend-starter.git",
"author": "halvardssm",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"prettier": "prettier --write \"{components,pages,public,styles}/**/*.{ts,tsx,json,css}\" \"*.{js,ts,json,md}\"",
"storybook": "start-storybook -p 6006 --ci",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.4.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@headlessui/react": "^1.2.0",
"next": "^11.1.2",
"next-i18next": "^8.4.0",
"next-themes": "^0.0.14",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"twemoji": "^13.1.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@emotion/babel-plugin": "^11.3.0",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.8",
"@types/react": "17.0.8",
"@types/twemoji": "^12.1.1",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^3.1.0",
"postcss": "^8.3.0",
"prettier": "^2.4.0",
"tailwindcss": "^2.1.4",
"twin.macro": "^2.4.2",
"typescript": "^4.3.2"
}
}