-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1.27 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
{
"name": "api",
"version": "1.0.0",
"main": "index.js",
"author": "Abhishek Chadha",
"license": "MIT",
"devDependencies": {
"@types/jest": "^22.2.0",
"@types/lodash": "^4.14.93",
"@types/node": "^9.3.0",
"jest": "^22.4.2",
"serverless": "^1.24.1",
"serverless-offline": "^3.16.0",
"serverless-plugin-typescript": "^1.1.3",
"sqlite": "^2.9.1",
"ts-jest": "^22.4.0",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
},
"dependencies": {
"@types/knex": "^0.14.9",
"googleapis": "^28.1.0",
"knex": "^0.14.4",
"lodash": "^4.17.4",
"messenger-codes": "https://github.com/CMP-Studio/messenger-codes.git",
"moment": "^2.22.0",
"pg": "^7.4.1"
},
"scripts": {
"start": "./node_modules/.bin/serverless offline -s dev -P 3001",
"debug": "export SLS_DEBUG=* AWS_REGION=us-west-1 && node --inspect ./node_modules/.bin/serverless offline -s dev -P 3001",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
}
}