forked from unlock-protocol/unlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.21 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "locksmith",
"version": "1.0.0",
"description": "an unlock storage service",
"main": "server.js",
"scripts": {
"prestart": "yarn build",
"start": "node -r ./src/utils/envLoader.js ./build/server.js",
"predev": "NODE_ENV=development yarn db:migrate",
"dev": "tsc-watch --onSuccess 'yarn start' --onFailure 'echo Beep! Compilation Failed'",
"pretest": "NODE_ENV=test yarn run db:migrate",
"test": "jest --forceExit --runInBand",
"lint": "eslint --ext .ts,.js src/ __tests__/",
"db:migrate": "sequelize --config ./config/sequelize.config.js db:migrate",
"sequelize": "sequelize --config ./config/sequelize.config.js",
"preci": "yarn lint",
"ci": "yarn test",
"build": "tsc",
"tsc": "tsc",
"predist": "yarn build",
"dist": "sh ./scripts/dist.sh",
"prefulfillment:prepare": "yarn build",
"fulfillment:prepare": "node ./scripts/fulfillment_prepare",
"authorize": "./scripts/authorize-lock"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"engines": {
"node": "^10"
},
"author": "Unlock Inc",
"license": "ISC",
"dependencies": {
"@sentry/node": "6.3.5",
"@sentry/tracing": "6.3.5",
"@types/cors": "2.8.10",
"@types/eth-sig-util": "2.1.0",
"@types/ethereumjs-util": "5.2.0",
"@types/express": "4.17.12",
"@types/express-serve-static-core": "4.17.20",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "26.0.23",
"@types/nock": "10.0.3",
"@types/node": "12.20.13",
"@types/request-promise-native": "1.0.17",
"@types/sequelize": "4.28.9",
"@types/stripe": "8.0.416",
"@types/supertest": "2.0.11",
"@unlock-protocol/unlock-js": "0.19.2",
"apollo-cache-inmemory": "1.6.6",
"apollo-client": "2.6.10",
"apollo-datasource-graphql": "1.3.2",
"apollo-link-http": "1.5.17",
"apollo-server": "2.24.0",
"apollo-server-express": "2.24.0",
"aws-sdk": "2.897.0",
"babel-jest": "27.0.2",
"body-parser": "1.19.0",
"color-scheme": "1.0.1",
"cors": "2.8.5",
"cross-fetch": "3.1.4",
"dotenv": "10.0.0",
"eslint": "7.25.0",
"eslint-config-standard": "16.0.3",
"eth-sig-util": "2.5.4",
"ethereumjs-util": "6.2.1",
"ethers": "5.3.0",
"express": "4.17.1",
"express-jwt": "6.0.0",
"express-list-endpoints": "5.0.0",
"express-winston": "4.1.0",
"graphql": "15.5.0",
"graphql-tag": "2.12.4",
"isomorphic-fetch": "3.0.0",
"jest": "26.6.3",
"lodash.isequal": "4.5.0",
"multer": "1.4.2",
"multer-s3": "2.9.0",
"nock": "13.0.11",
"node-mocks-http": "1.10.1",
"pg": "8.6.0",
"random-words": "1.1.1",
"reflect-metadata": "0.1.13",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"run-script-os": "1.1.6",
"sequelize": "5.22.4",
"sequelize-cli": "6.2.0",
"sequelize-typescript": "1.1.0",
"stripe": "8.150.0",
"supertest": "6.1.3",
"ts-jest": "26.5.6",
"typescript": "4.2.4",
"unlock-abi-1-1": "1.1.1",
"winston": "3.3.3",
"yargs": "16.2.0"
},
"devDependencies": {
"nodemon": "2.0.7",
"supertest": "6.1.3",
"tsc-watch": "4.2.9"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.test.js?(x)"
]
}
}