forked from calderajs/caldera-react-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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": "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-electron-todo": "electron build/electrontodo",
"start-database": "node build/database",
"start-routing": "node build/routing",
"start-twudder": "node -r dotenv/config build/twudder"
},
"author": "Yunyu Lin",
"license": "MIT",
"dependencies": {
"classnames": "^2.3.1",
"dotenv": "^8.2.0",
"mongodb": "^4.3.1",
"pg": "^8.0.0",
"randomcolor": "^0.5.4",
"react-native-remote-web": "^0.1.1",
"simplytyped": "^3.2.3",
"sql-template-tag": "^3.3.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/node": "^17.0.14",
"@types/pg": "^8.6.4",
"@types/randomcolor": "^0.5.6",
"@types/react": "^17.0.38",
"electron": "^17.0.0",
"typescript": "^4.5.5"
}
}