-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "www.compost.page",
"author": "Nat Schager",
"type": "module",
"version": "2.0.0",
"scripts": {
"dev": "nodemon server.js & vite",
"build": "vite build && rsync src/sim/*.js dist/assets --exclude=worker.js",
"preview": "vite preview",
"build-start": "vite build && rsync src/sim/*.js dist/assets --exclude=worker.js && node server.js",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"@tensorflow-models/toxicity": "^1.2.2",
"@tensorflow/tfjs-node": "^4.1.0",
"all": "^0.0.0",
"body-parser": "^1.20.1",
"express": "^4.18.2",
"html-to-text": "^8.2.1",
"natural": "^5.2.4",
"node-fetch": "^3.3.0",
"p5": "^1.5.0",
"pinia": "^2.0.28",
"sanitize-html": "^2.7.3",
"util.promisify": "^1.1.1",
"vue": "^3.2.41",
"vue-router": "^4.1.6",
"vue-select": "^4.0.0-beta.6"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/eslint-config-prettier": "^7.0.0",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"sass": "^1.57.1",
"vite": "^3.1.8"
}
}