-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "skill-async-template-nodejs",
"description": "Template for SoulMachines Async Skills in NodeJS",
"version": "1.0.0",
"scripts": {
"clean": "shx rm -rf dist",
"build": "npm run clean && tsc",
"serve": "ts-node -r tsconfig-paths/register src/app/app.ts",
"serve:watch": "nodemon --watch \"src/**\" --exec \"npm run serve\" --ext ts --ignore dist .",
"lint": "eslint src/ --ext .js,.ts",
"lint:fix": "eslint src/ --ext .js,.ts --fix",
"prettier": "prettier --check src/",
"prettier:fix": "prettier --write src/"
},
"author": "Soul Machines Ltd",
"license": "Apache 2.0",
"prettier": {
"singleQuote": true
},
"dependencies": {
"@soulmachines/smskillsdk": "^1.4.0-rc.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/express-ws": "^3.0.4",
"@types/node": "^20.12.2",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3",
"yargs": "^17.7.2"
}
}