-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 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
74
75
76
{
"name": "next-with-tailwindcss",
"version": "1.0.0",
"description": "NextJS with Tailwind CSS",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "npm run test:format && npm run test:lint && npm run test:unit",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:format": "prettier --check .",
"test:tsc": "tsc --noEmit",
"test:lint": "eslint './src/**/*' --ext .tsx,.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:tsc && npm run test:lint",
"pre-push": "npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/lailo-ch/next-with-tailwindcss.git"
},
"author": "Lailo",
"license": "MIT",
"bugs": {
"url": "https://github.com/lailo-ch/next-with-tailwindcss/issues"
},
"homepage": "https://github.com/lailo-ch/next-with-tailwindcss#readme",
"dependencies": {
"clsx": "^1.1.1",
"next": "^9.4.4",
"nprogress": "^0.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"react-switch": "^5.0.1",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@mdx-js/loader": "^1.6.5",
"@next/mdx": "^9.4.4",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.9",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-transform-stub": "^2.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "2.0.5",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.13.1",
"tailwindcss": "^1.4.6",
"tailwindcss-dark-mode": "^1.1.4",
"typescript": "^3.9.3"
}
}