-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 854 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
35
{
"name": "briscas-functions",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prestart": "npm run build",
"start": "func start",
"test": "jest"
},
"dependencies": {
"@types/uuid": "^7.0.3",
"class-transformer": "^0.2.3",
"class-transformer-validator": "^0.8.0",
"class-validator": "^0.12.2",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"reflect-metadata": "^0.1.13",
"uuid": "^8.0.0"
},
"devDependencies": {
"@azure/functions": "^1.0.2-beta2",
"@types/jest": "^25.2.1",
"@types/jsonwebtoken": "^8.3.9",
"jest": "^25.4.0",
"ts-jest": "^25.4.0",
"typescript": "^3.3.3"
},
"_moduleAliases": {
"$server": "dist/_core/server",
"$accounts": "dist/_core/accounts",
"$briscas": "dist/_core/briscas"
}
}