-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "caldera-examples",
"version": "0.0.1",
"description": "Example Caldera apps",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc --watch",
"start-forms": "node build/forms",
"start-clack": "node build/clack",
"start-notepad": "node build/notepad",
"start-todo": "node build/todo",
"start-database": "node build/database",
"start-routing": "node build/routing",
"start-twudder": "node -r dotenv/config build/twudder"
},
"author": "Yunyu Lin",
"license": "MIT",
"dependencies": {
"@types/classnames": "^2.2.10",
"@types/mongodb": "^3.3.16",
"caldera": "^0.0.7",
"classnames": "^2.2.6",
"dotenv": "^8.2.0",
"mongodb": "^3.5.3",
"pg": "^8.0.0",
"randomcolor": "^0.5.4",
"simplytyped": "^3.2.3",
"sql-template-tag": "^3.3.0"
},
"devDependencies": {
"@types/node": "^13.7.4",
"@types/pg": "^7.14.3",
"@types/randomcolor": "^0.5.3",
"@types/react": "^16.9.22",
"typescript": "^3.8.2"
}
}