forked from kin-starters/kinetic-typescript-node-demo-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 923 Bytes
/
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
{
"name": "typescript-eslint-prettier-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "3.3.0",
"@typescript-eslint/parser": "3.3.0",
"eslint": "7.3.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"ts-node": "8.10.2",
"typescript": "3.9.5"
},
"dependencies": {
"@kin-kinetic/sdk": "^1.0.0-rc.16",
"@kin-tools/keypair-compat": "^1.8.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2"
}
}