-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1007 Bytes
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
{
"name": "castle-node-example",
"version": "2.0.0",
"description": "A small Express app demonstrating key Castle workflows (login, password reset, lists, privacy, events) on top of the Castle Node SDK 3.0.",
"main": "app.js",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/castle/castle-node-example.git"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node app.js",
"dev": "node --watch app.js",
"build:css": "tailwindcss -i ./src/tailwind.css -o ./static/styles.css --minify",
"watch:css": "tailwindcss -i ./src/tailwind.css -o ./static/styles.css --watch",
"test": "jest"
},
"dependencies": {
"@castleio/castle-js": "^2.8.4",
"@castleio/sdk": "^3.0.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"pug": "^3.0.3"
},
"devDependencies": {
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.19"
}
}