-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.62 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
77
78
79
80
81
82
83
84
85
{
"name": "web-os",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "webpack serve --progress --config webpack.dev.ts",
"test:e2e": "cypress open",
"build": "NODE_ENV=production webpack --progress --config webpack.prod.ts --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mukuljainx/web-os.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mukuljainx/web-os/issues"
},
"homepage": "https://github.com/mukuljainx/web-os#readme",
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-typescript": "^7.13.0",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@fluentui/react": "^8.12.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@reduxjs/toolkit": "^1.5.1",
"@testing-library/react-hooks": "^5.1.1",
"@types/jest": "^26.0.20",
"@types/lodash-es": "^4.17.4",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux-logger": "^3.0.8",
"@types/styled-components": "^5.1.9",
"@types/uglifyjs-webpack-plugin": "^1.1.1",
"@types/webpack-bundle-analyzer": "^4.4.0",
"@types/webpack-manifest-plugin": "^3.0.4",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.1.2",
"cypress": "^6.6.0",
"dayjs": "^1.10.4",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.1.1",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"lodash-es": "^4.17.21",
"lodash-move": "^1.1.1",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"react-refresh": "^0.9.0",
"react-router-dom": "^5.2.0",
"react-spring": "^9.0.0",
"redux-logger": "^3.0.6",
"reselect": "^4.0.0",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1",
"ts-node": "^9.1.1",
"type-fest": "^0.21.3",
"typescript": "^4.2.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.25.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-manifest-plugin": "^3.1.0",
"webpack-merge": "^5.7.3"
},
"devDependencies": {
"@fluentui/webpack-utilities": "^8.0.2"
}
}