-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
117 lines (117 loc) · 3.73 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "create-frourio-app",
"version": "0.0.0",
"description": "Create a frourio project in seconds",
"author": "Solufa <[email protected]>",
"license": "MIT",
"bin": "bin/index.js",
"scripts": {
"notios": "notios dev",
"dev": "run-p dev:*",
"dev:server": "onchange -i -k ./server/build/index.dev.js -- node ./server/build/index.dev.js --host=0.0.0.0",
"dev:build-server-dev": "ts-node -T ./scripts/build-file.ts --from=./server/index.ts --to=./server/build/index.dev.js --target=es2019 --server --watch",
"dev:aspida": "aspida --watch",
"dev:frourio": "cd server && frourio --watch",
"build": "npm run build:frourio && run-p build:client build:server build:lib",
"build:client": "aspida && next build && next export",
"build:lib": "webpack --config webpack.config.lib.js",
"build:server": "ts-node -T ./scripts/build-file.ts --from=./server/index.ts --to=./server/build/index.js --target=es2019 --server --prod",
"build:frourio": "cd server && frourio",
"lint": "eslint --ext .ts,.js,.tsx . && prettier --check \"./**/*.ts\"",
"lint:fix": "eslint --ext .ts,.js,.tsx . --fix && prettier --check \"./**/*.ts\" --write",
"typecheck": "tsc --noEmit && tsc --noEmit -p server",
"test": "jest"
},
"homepage": "https://frourio.com",
"repository": {
"type": "git",
"url": "git+https://github.com/frouriojs/create-frourio-app.git"
},
"bugs": {
"url": "https://github.com/frouriojs/create-frourio-app/issues"
},
"files": [
"bin",
"lib",
"out",
"server/build/index.js",
"server/templates"
],
"keywords": [
"frourio",
"typescript"
],
"dependencies": {
"@aspida/axios": "^1.11.0",
"@aspida/swr": "^1.11.0",
"@fastify/cors": "^8.2.0",
"@fastify/static": "^6.5.1",
"@fastify/websocket": "^7.1.1",
"ansi_up": "^5.1.0",
"axios": "^0.27.2",
"commander": "^9.0.0",
"ejs": "^3.1.7",
"fastify": "^4.15.0",
"frourio": "^0.32.0",
"github-buttons": "^2.21.1",
"is-binary-path": "^2.1.0",
"mariadb": "^2.5.5",
"next": "13.0.4",
"object-hash": "^3.0.0",
"open": "^8.4.0",
"pg": "^8.7.3",
"portfinder": "^1.0.28",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-flip-toolkit": "^7.0.13",
"react-markdown": "^8.0.0",
"react-query": "^3.34.16",
"real-executable-path": "^3.0.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@fastify/nextjs": "^9.2.0",
"@types/ejs": "^3.1.0",
"@types/jest": "^29.2.3",
"@types/jest-expect-message": "^1.1.0",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.11.9",
"@types/object-hash": "^2.2.1",
"@types/ora": "^3.2.0",
"@types/pg": "^8.6.5",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/tcp-port-used": "^1.0.0",
"@types/ws": "^8.5.3",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"css-loader": "^6.7.1",
"dotenv": "^16.0.3",
"esbuild": "^0.15.15",
"esbuild-node-externals": "^1.5.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.11",
"fast-glob": "^3.2.11",
"form-data": "^4.0.0",
"jest": "^29.3.1",
"jest-expect-message": "^1.1.3",
"nodemon-webpack-plugin": "^4.7.1",
"notios": "^0.4.0",
"onchange": "^7.1.0",
"prettier": "^2.8.7",
"style-loader": "^3.3.1",
"tcp-port-used": "^1.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^5.0.3",
"wait-for-expect": "^3.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0",
"yaml": "^1.10.2"
}
}