-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.16 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
{
"name": "the-myspace",
"version": "0.2.0",
"description": "2007 called, it wants its Myspace profile back",
"scripts": {
"build:dev": "NODE_ENV=development webpack --mode development -w",
"build:prod": "NODE_ENV=production webpack --mode production",
"fix": "eslint --fix '**/*'",
"start:client": "ts-node server.ts"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.7",
"@mui/material": "^6.4.3",
"axios": "^1.8.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@koa/router": "^13.1.0",
"@mikey-pro/eslint-config-react": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-static": "^4.0.4",
"@types/koa__router": "^12.0.4",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/webpack": "^5.28.5",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"grammarify": "^2.1.0",
"koa": "^2.16.0",
"koa-body": "^6.0.1",
"koa-bodyparser": "^4.4.1",
"koa-static": "^5.0.0",
"mikey-pro": "^8.1.1",
"sass": "^1.85.1",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"url-loader": "^4.1.1",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"homepage": "https://github.comchiefmikey/the-myspace#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chiefmikey/the-myspace.git"
},
"bugs": {
"url": "https://github.com/chiefmikey/the-myspace/issues"
},
"license": "MIT",
"keywords": [
"myspace",
"social",
"profile"
],
"author": "Mikl Wolfe <[email protected]> (https://mikl.io)",
"prettier": "@mikey-pro/prettier-config",
"eslintConfig": {
"extends": "@mikey-pro/eslint-config-react"
},
"stylelint": {
"extends": "@mikey-pro/stylelint-config"
}
}