-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.48 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@pocketgems/app",
"version": "0.0.15",
"description": "Todea App Library",
"license": "Apache-2.0",
"main": "src/index.js",
"scripts": {
"build-doc": "./docs/build.sh",
"debug": "yarn start-local-db; ./node_modules/nodemon/bin/nodemon.js --no-lazy --legacy-watch --watch ./src --watch ./examples --watch ./test --inspect=9229 ./node_modules/jest/bin/jest.js --coverage --config=./jest.config.json --runInBand",
"test": "yarn start-local-db; ./node_modules/jest/bin/jest.js --coverage --config=./jest.config.json",
"setup": "yarn && pip install -r requirements.txt",
"start-local-db": "yarn --cwd ./node_modules/@pocketgems/dynamodb setup; yarn --cwd ./node_modules/@pocketgems/dynamodb start-local-db"
},
"contributors": [
"David Underhill",
"Yu Guan",
"Solaman Huq",
"Shimul Bhowmik"
],
"repository": {
"type": "git",
"url": "https://github.com/pocketgems/app"
},
"files": [
"src/**",
"!src/app.js",
"docs/**",
"test/environment.js",
"test/base-test.js"
],
"dependencies": {
"@fastify/compress": "^6.1.1",
"@fastify/cookie": "^8.3.0",
"@fastify/swagger": "^8.1.0",
"@fastify/swagger-ui": "^1.2.0",
"fastify": "^4.10.0",
"fastify-plugin": "^2.0.1",
"got": "^11.5.2",
"pino": "6.13.0",
"word-wrap": "^1.2.3"
},
"resolutions": {
"@fastify/static": "6.5.1"
},
"peerDependencies": {
"@pocketgems/dynamodb": "^0.2.9",
"@pocketgems/schema": "^0.1.2"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.17.12",
"@pocketgems/dynamodb": "^0.2.9",
"@pocketgems/schema": "^0.1.2",
"@pocketgems/unit-test": "^0.0.1",
"babel-loader": "^8.2.2",
"eslint": "^8.22.0",
"eslint-config-standard": "15.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"jsdoc": "3.6.4",
"license-webpack-plugin": "^2.3.17",
"nodemon": "^2.0.20",
"standard": "^15.0.0",
"superagent-defaults": "^0.1.14",
"supertest": "^4.0.2",
"tui-jsdoc-template": "^1.2.2",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1"
},
"standard": {
"envs": [
"jest"
],
"globals": [
"fail"
],
"ignore": [
"**/node_modules/**"
],
"parser": "@babel/eslint-parser"
}
}