-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "solid-todomvc",
"version": "1.0.0",
"description": "Solid implementation of TodoMVC",
"scripts": {
"start": "rollup -w -c",
"build": "rollup -c --environment production"
},
"keywords": [
"solid",
"javascript",
"framework",
"todomvc"
],
"author": "Ryan Carniato",
"license": "MIT",
"homepage": "https://github.com/solidjs/solid-todomvc",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/solid-todomvc.git"
},
"private": true,
"engines": {
"node": ">=16.6.1",
"npm": ">=7.20.1"
},
"type": "module",
"dependencies": {
"solid-js": "1.7.1"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-typescript": "7.21.0",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.4.0",
"@types/node": "^18.15.5",
"babel-preset-solid": "1.7.1",
"rollup": "3.20.0",
"todomvc-app-css": "^2.2.0",
"todomvc-common": "^1.0.5",
"typescript": "5.0.2"
}
}