-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.42 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.42 KB
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
{
"name": "cloudtaskr",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"format": "prettier --write --ignore-path .gitignore \"./**/*.{js,ts,jsx,tsx,json,yml,yaml,css}\"",
"format:check": "prettier --check --ignore-path .gitignore \"./**/*.{js,ts,jsx,tsx,json,yml,yaml,css}\"",
"lint": "eslint --fix --cache --cache-location .eslintcache --ignore-path .gitignore \"./**/*.{js,ts,jsx,tsx}\"",
"lint:check": "eslint --cache --cache-location .eslintcache --ignore-path .gitignore \"./**/*.{js,ts,jsx,tsx}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@tailwindcss/postcss7-compat": "^2.0.3",
"autoprefixer": "^9.8.6",
"next": "10.0.6",
"postcss": "^7.0.35",
"react": "17.0.1",
"react-dom": "17.0.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/preset-flow": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@storybook/addon-actions": "^6.1.17",
"@storybook/addon-controls": "^6.1.17",
"@storybook/addon-essentials": "^6.1.17",
"@storybook/addon-links": "^6.1.17",
"@storybook/react": "^6.1.17",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^10.0.0",
"css-loader": "^5.0.2",
"enzyme": "^3.11.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
}
}