-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.7 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "modular-admin-tailwind-react",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"test:e2e": "concurrently -n APP,CYPRESS -c blue,green \"npm start\" \"npm run cypress:open\"",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"deploy": "npm run build-preview && gh-pages -d build --repo git@github.com:modularcode/modular-admin-tailwind-react.git --branch gh-pages",
"build-preview": "cross-env PUBLIC_PATH='/' npm run build && echo modular-admin-tailwind-react.modularcode.io > ./build/CNAME",
"build-docs": "build-storybook --docs -s ./public -o build/docs",
"build-storybook": "build-storybook",
"storybook": "start-storybook -p 6060",
"use:es": "symlink-dir ./src-es ./src/",
"use:ts": "symlink-dir ./src-ts ./src/",
"es:init": "npm run es:clean && npm run es:build && npm run es:prettify",
"es:clean": "rimraf src-es/",
"es:build": "tsc --project ./tsconfig.to-es.json",
"es:prettify": "prettier --config ./.prettierrc.js --write \"src-es/**/*.(js|jsx|ts)\"",
"eject": "react-scripts eject"
},
"homepage": "http://modular-admin-tailwind-react.modularcode.io",
"dependencies": {
"@headlessui/react": "^1.1.1",
"@rehooks/component-size": "^1.0.3",
"@types/faker": "^5.5.3",
"@types/lodash": "^4.14.168",
"@types/react-router-dom": "^5.1.7",
"@types/uuid": "^8.3.0",
"axios": "^0.21.1",
"axios-mock-adapter": "^1.19.0",
"chart.js": "^3.2.0",
"clsx": "^1.1.1",
"cross-env": "^7.0.3",
"faker": "^5.5.3",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^16",
"react-chartjs-2": "^3.0.3",
"react-dom": "^16",
"react-github-btn": "^1.2.0",
"react-intl": "^5.17.1",
"react-router-dom": "^5.2.0",
"react-script": "^2.0.5",
"react-scripts": "^4.0.3",
"store": "^2.0.12",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@craco/craco": "^6.1.2",
"@cypress/react": "^5.6.0",
"@cypress/webpack-dev-server": "^1.2.0",
"@storybook/addon-a11y": "^6.2.9",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-docs": "^6.2.9",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-storysource": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.2.9",
"@storybook/source-loader": "^6.2.9",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/store": "^2.0.2",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"concurrently": "^6.1.0",
"cypress": "^7.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fork-ts-checker-webpack-plugin": "^6.2.5",
"gh-pages": "^3.1.0",
"jest-canvas-mock": "^2.3.1",
"msw": "^0.28.2",
"postcss": "^7.0.35",
"prettier": "2.2.1",
"react-app-rewired": "^2.1.8",
"react-docgen-typescript-loader": "^3.7.2",
"rimraf": "^3.0.2",
"symlink-dir": "^5.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2",
"ts-loader": "^9.1.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"@/(.*)": "<rootDir>/src/$1"
}
},
"msw": {
"workerDirectory": "public"
}
}