-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
34 lines (34 loc) · 857 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
{
"license": "MIT",
"scripts": {
"build": "./scripts/build.sh",
"deploy": "./scripts/deploy.sh",
"lint": "tslint src/**/*.ts",
"test": "jest test",
"test:watch": "jest test --watch"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"devDependencies": {
"@types/node": "^8.0.25",
"aws-sdk": "^2.104.0",
"ejs-cli": "^2.0.0",
"jasmine-data-provider": "^2.2.0",
"node-sass": "^4.5.3",
"s3sync-cli": "^2.0.0",
"serverless": "^1.20.2",
"serverless-dynamodb-autoscaling": "^0.6.1",
"serverless-plugin-typescript": "^1.1.1",
"serverless-stack-output": "^0.2.0",
"ts-jest": "^20.0.10",
"typescript": "^2.4.2"
}
}