-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.52 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
{
"name": "reactive-ditto",
"version": "2.0.0",
"description": "",
"main": "./src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npx webpack w --mode development",
"dev": "npx webpack --mode development",
"prod": "npx webpack --mode production"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.0",
"dotenv": "^16.0.1",
"gsap": "^3.13.0",
"moment": "^2.30.1",
"normalize.css": "^8.0.1",
"react": "^18.1.0",
"react-click-away-listener": "^2.4.0",
"react-dom": "^18.1.0",
"react-player": "^2.16.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"recoil": "^0.7.7"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.26.0",
"@types/css-modules": "^1.0.5",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"sass": "^1.52.2",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.5.2",
"typescript": "^5.8.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
}
}