-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.22 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
{
"name": "example-react-typescript",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/tw-in-js/example-react-typescript.git"
},
"bugs": {
"url": "https://github.com/tw-in-js/example-react-typescript/issues"
},
"homepage": "https://github.com/tw-in-js/example-react-typescript/README.md",
"keywords": [
"twind",
"react",
"typescript",
"tailwind",
"tailwindcss",
"tw-in-js"
],
"license": "ISC",
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "web-test-runner \"src/**/*.test.tsx\"",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@headlessui/react": "^0.3.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-logs": "^0.1.9",
"twind": "0.15.1"
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.0.5",
"@snowpack/plugin-react-refresh": "^2.4.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/web-test-runner-plugin": "^0.2.1",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/react": "^6.1.18",
"@testing-library/react": "^11.2.5",
"@types/chai": "^4.2.15",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/snowpack-env": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"@web/test-runner": "^0.12.15",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-gojutin": "^0.1.5",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-functional": "^3.2.1",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"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-standard": "^5.0.0",
"prettier": "^2.2.1",
"snowpack": "^3.0.11",
"typescript": "^4.1.5"
}
}