-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "f3",
"version": "0.1.3",
"private": false,
"description": "Facilitating conversations using Fist to Five.",
"author": "yoshixmk",
"main": "index.js",
"scripts": {
"build": "yarn clean && concurrently 'npm:build:*'",
"build:client": "vite build",
"build:server": "yarn compile",
"clean": "rimraf dist",
"compile": "tsc",
"dev": "concurrently 'npm:dev:*'",
"dev:client": "vite",
"dev:server": "ts-node-dev --respawn src/server/index.ts",
"check": "rome check",
"check-fix": "rome check --apply",
"lint": "eslint 'src/**/*.{m?js,ts,vue}'",
"lint-fix": "eslint --fix 'src/**/*.{m?js,ts,vue}'",
"start": "concurrently 'npm:start:*'",
"start:client": "vite serve --mode production",
"start:server": "node dist/server/index.js"
},
"dependencies": {
"@popperjs/core": "2.6.0",
"apexcharts": "3.23.1",
"axios": "0.21.1",
"bootstrap": "5.0.0-beta1",
"cors": "2.8.5",
"vue": "3.0.5",
"vue3-apexcharts": "1.1.1",
"vuex": "4.0.0-rc.2"
},
"devDependencies": {
"@types/cors": "2.8.9",
"@types/express": "4.17.10",
"@types/node": "14.14.20",
"@typescript-eslint/eslint-plugin": "4.13.0",
"@typescript-eslint/parser": "4.13.0",
"@vitejs/plugin-vue": "1.0.5",
"@vue/compiler-sfc": "3.0.5",
"concurrently": "5.3.0",
"dotenv": "8.2.0",
"eslint": "7.17.0",
"eslint-plugin-vue": "7.4.1",
"express": "4.17.1",
"rimraf": "3.0.2",
"rome": "10.0.4-beta",
"sass": "1.32.4",
"ts-node": "9.1.1",
"ts-node-dev": "1.1.1",
"typescript": "4.1.3",
"vite": "2.0.0-beta.23",
"vue-eslint-parser": "7.3.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yoshixmk/f3"
},
"engines": {
"node": ">= 14.10.0",
"npm": "npm is not supported"
},
"engineStrict": true
}