-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
{
"name": "capsule-todomvc",
"version": "1.0.0",
"description": "TodoMVC of capsule",
"main": "index.js",
"scripts": {
"test": "start-server-and-test start http://localhost:8000 'cypress run'",
"clean": "rimraf docs",
"start": "parcel --port 8000 index.html",
"build": "parcel build --public-url . --out-dir docs index.html",
"dist": "npm run clean && npm run build && cp learn.json docs/",
"fmt": "prettier --single-quote --write src cypress index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capsidjs/todomvc2.git"
},
"keywords": [
"capsid",
"todomvc"
],
"author": "Yoshiya Hinosawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/capsidjs/todomvc2/issues"
},
"homepage": "https://github.com/capsidjs/todomvc2#readme",
"dependencies": {
"@kt3k/capsule": "^0.5.1",
"todomvc-app-css": "^2.3.0",
"todomvc-common": "^1.0.5"
},
"devDependencies": {
"cypress": "^5.4.0",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2",
"start-server-and-test": "^1.11.5",
"typescript": "^4.0.3"
}
}