-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.31 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
{
"name": "lumberyard-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.json --max-warnings 0",
"fix": "eslint . --ext .ts,.tsx,.js,.jsx,.json --fix & yarn prettier",
"prettier": "prettier --config .prettierrc '**/*.{json,js,jsx,ts,tsx,css,scss,md}' --write",
"storybook": "start-storybook -p 9009",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.1.5",
"@emotion/server": "^11.0.0",
"@emotion/styled": "^11.1.5",
"@nandorojo/swr-firestore": "^0.16.0",
"next": "latest",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"valtio": "^0.8.2"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.2.0",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-controls": "^6.1.21",
"@storybook/addon-docs": "^6.1.21",
"@storybook/addon-viewport": "^6.1.21",
"@storybook/react": "^6.1.21",
"@tailwindcss/postcss7-compat": "^2.0.3",
"@types/node": "^14.14.34",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"autoprefixer": "^9",
"babel-plugin-macros": "^3.0.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"firebase": "^8.3.0",
"husky": "^5.1.3",
"js-cookie": "^2.2.1",
"lint-staged": "^10.5.4",
"postcss": "^7",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"redux-devtools-extension": "^2.13.9",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"twin.macro": "^2.3.0",
"typescript": "^4.2.3",
"uuid-random": "^1.3.2"
},
"compilerOptions": {
"jsxImportSource": "@emotion/react"
},
"files": [
"twin.d.ts"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,js,jsx,ts,tsx,css,scss,md}": "prettier --config .prettierrc --write",
"*.{ts,tsx,js,jsx,json}": "eslint --cache --max-warnings 0"
}
}