generated from Vico1993/basic-ts-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.51 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
43
44
45
46
47
{
"name": "hue-api",
"version": "1.0.0",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"license": "MIT",
"files": [
"build"
],
"repository": "[email protected]:vico1993/hueapi.git",
"scripts": {
"prestart": "npm run build",
"start": "node .",
"build": "tsc -p tsconfig.json",
"test": "jest",
"watch": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/index.ts\"",
"lint": "eslint --ext .ts .",
"getHueIp": "npx ts-node src/scripts/getHueIp.ts",
"createUser": "npx ts-node src/scripts/createUser.ts"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@peter-murray/hue-bridge-model": "^2.0.4",
"@types/morgan": "^1.9.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"morgan": "^1.10.0",
"node-hue-api": "^5.0.0-beta.13",
"swagger-ui-express": "^4.3.0"
}
}