-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.76 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "notes-app-api",
"version": "1.1.0",
"description": "A Node.js starter for the Serverless Framework with async/await and unit test support",
"main": "handler.js",
"scripts": {
"test": "jest"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AnomalyInnovations/serverless-nodejs-starter.git"
},
"devDependencies": {
"aws-sdk": "^2.935.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^23.4.0",
"babel-loader": "^7.1.5",
"babel-plugin-source-map-support": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"jest": "^21.2.1",
"serverless-aws-documentation": "^1.1.0",
"serverless-offline": "^3.33.0",
"serverless-webpack": "^5.5.1",
"webpack": "^4.46.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"jsonwebtoken": "^8.5.1",
"source-map-support": "^0.4.18",
"uuid": "^3.4.0"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.json$": "babel-jest"
},
"moduleNameMapper": {
"^@tests[/](.+)": "<rootDir>/tests/$1",
"^@[/](.+)": "<rootDir>/$1"
},
"moduleFileExtensions": [
"js",
"json"
]
},
"eslintConfig": {
"extends": [
"standard",
"plugin:jsdoc/recommended",
"plugin:vue/essential"
],
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 2019,
"sourceType": "module",
"allowImportExportEverywhere": true
}
}
}