-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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": "svelte-rollup-express-template",
"version": "1.0.0",
"description": "A basic template for building Svelte apps with Rollup and Express",
"exports": "./index.js",
"engines": {
"node": ">16"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "node index.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/nobody5050/svelte-rollup-express-template.git"
},
"author": "5690 Programmers",
"license": "MIT",
"bugs": {
"url": "https://github.com/nobody5050/svelte-rollup-express-template/issues"
},
"homepage": "https://github.com/nobody5050/svelte-rollup-express-template#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"rollup": "^2.3.4",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-svelte": "6.1.1",
"rollup-plugin-terser": "^5.1.2",
"svelte": "^3.59.2"
},
"dependencies": {
"axios": "^1.4.0",
"chalk": "^5.2.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"tinro": "^0.6.12"
}
}