-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "name-generator",
"version": "2.0.0",
"description": "Full stack text generator with dynamic results built from public data sources",
"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": {
"axios": "^1.8.1",
"vue": "^3.5.13"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/plugin-transform-runtime": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@mikey-pro/eslint-config-vue": "^8.1.0",
"@types/koa-static": "^4.0.4",
"@types/koa__router": "^12.0.4",
"@types/webpack": "^5.28.5",
"@vue/babel-plugin-jsx": "^1.2.5",
"@vue/compiler-sfc": "^3.5.12",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"koa": "^2.16.0",
"koa-bodyparser": "^4.4.1",
"koa-static": "^5.0.0",
"mikey-pro": "^8.1.1",
"node-sass": "^9.0.0",
"sass-loader": "^16.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"homepage": "/~https://github.com/chiefmikey/name-generator#readme",
"repository": {
"type": "git",
"url": "git+/~https://github.com/chiefmikey/name-generator.git"
},
"bugs": {
"url": "/~https://github.com/chiefmikey/name-generator/issues"
},
"license": "MIT",
"author": "Mikl Wolfe <wolfe@mikl.io> (https://mikl.io)",
"browserslist": [
"defaults"
],
"prettier": "@mikey-pro/prettier-config",
"eslintConfig": {
"extends": "@mikey-pro/eslint-config-vue"
},
"stylelint": {
"extends": "@mikey-pro/stylelint-config"
}
}