-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "berkhan",
"version": "1.0.0",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": "[email protected]:OswaldLabsOpenSource/berkhan",
"author": "Anand Chowdhary <[email protected]>",
"license": "MIT",
"scripts": {
"watch": "concurrently 'yarn nodemon' 'yarn build-watch' 'yarn prettier-watch'",
"build-watch": "onchange '*.ts' -- yarn build",
"build": "tsc && touch .env && cp .env dist/.env",
"start": "npm run build && node dist/server.js",
"nodemon": "nodemon dist/server.js",
"prettier-watch": "onchange '**/*.{ts,json}' -- prettier --write {{changed}}",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test-without-reporting": "jest --coverage",
"test-without-coverage": "jest"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.23",
"@types/js-base64": "^3.3.1",
"@types/lodash": "^4.14.157",
"@types/node": "^14.14.41",
"concurrently": "^5.3.0",
"coveralls": "^3.1.1",
"jest": "^25.5.4",
"nodemon": "^2.0.12",
"onchange": "^7.1.0",
"prettier": "^2.3.2",
"ts-jest": "^25.5.1",
"typescript": "^3.9.10"
},
"dependencies": {
"axios": "^0.21.0",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"js-base64": "^3.6.1"
},
"jest": {
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}