-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "translatetojson",
"version": "1.0.0",
"description": "Translate a JSON object into different languages",
"main": "index.js",
"dependencies": {
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"puppeteer": "^10.4.0",
"sirv-cli": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"rollup": "^2.79.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.53.1"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --no-clear"
},
"postinstall": "npm run build",
"repository": {
"type": "git",
"url": "git+https://github.com/bingland/translateToJSON.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bingland/translateToJSON/issues"
},
"homepage": "https://github.com/bingland/translateToJSON#readme"
}