generated from itaditya/template-next-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 2.27 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": "template-next-tailwind",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"server": "json-server -p 9191 src/server/seed.js",
"test": "jest --colors",
"test-platform": "yarn test 'src/*' --testPathIgnorePatterns='src/exercise-tests/*'",
"test-exercises": "yarn test 'src/exercise-tests/*'",
"test-challenges": "yarn test-exercises --testNamePattern='Evaluate Challenge'",
"evaluate": "yarn test-exercises --testNamePattern='Evaluate Playground' --reporters='default' --reporters='jest-html-reporter'",
"lint": "eslint",
"lint-platform": "yarn lint 'src/**/*.js' --ignore-pattern 'src/pages/exercises' --ignore-pattern 'src/exercise-tests'",
"lint-challenges": "yarn lint 'src/pages/exercises/**/challenge.js'",
"assistant": "yarn lint 'src/pages/exercises/**/playground.js'",
"create-exercise": "node src/scripts/create-exercise.js"
},
"dependencies": {
"@reach/tabs": "^0.11.2",
"@tailwindcss/typography": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"clsx": "1.1.1",
"eslint": "^7.5.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-testing-library": "^3.9.0",
"framer-motion": "^2.9.4",
"lite-youtube-embed": "^0.1.2",
"next": "10.0.0",
"prism-themes": "^1.5.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"tailwindcss": "1.9.0"
},
"keywords": [],
"description": "",
"devDependencies": {
"@mapbox/rehype-prism": "^0.5.0",
"@mdx-js/loader": "^1.6.21",
"@next/mdx": "^10.0.1",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.1",
"@testing-library/user-event": "^12.2.2",
"babel-jest": "^26.6.3",
"birla": "^1.2.0",
"eslint-config-react-app": "^6.0.0",
"faker": "^5.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-html-reporter": "^3.3.0",
"json-server": "^0.16.2",
"serverless-http": "^2.6.0"
}
}