-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.98 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
{
"name": "developer-test-pug",
"version": "1.0.0",
"description": "landing page",
"main": "index.js",
"repository": "[email protected]:bing107/developer-test-pug-react.git",
"author": "anon",
"license": "MIT",
"scripts": {
"dev": "yarn tailwind:css && webpack-dev-server --mode development",
"build": "NODE_ENV=production webpack",
"tailwind:css": "tailwind build src/styles.css -c tailwind.config.js -o src/tailwind.css",
"test": "jest",
"test:watch": "jest --watch",
"cypress": "cypress run",
"cypress:open": "cypress open",
"bundle:view": "webpack --profile --json > stats.json && webpack-bundle-analyzer bundle/output/path/stats.json",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^13.13.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tailwindcss": "^2.0.0"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@storybook/addon-actions": "6.5.15",
"@storybook/addon-links": "6.5.15",
"@storybook/addons": "6.5.15",
"@storybook/react": "6.5.15",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "11.2.7",
"autoprefixer": "10.4.13",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"css-loader": "5.2.7",
"cypress": "6.9.1",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"jest": "26.6.3",
"mini-css-extract-plugin": "1.6.2",
"node-sass": "7.0.3",
"postcss-cli": "8.3.1",
"postcss-loader": "4.3.0",
"prettier": "2.8.3",
"sass-loader": "10.4.1",
"style-loader": "2.0.0",
"ts-loader": "8.4.0",
"typescript": "4.9.4",
"webpack": "5.75.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "3.11.3"
}
}