-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.56 KB
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
{
"name": "stucco-js-azure-worker",
"version": "0.1.0",
"description": "Node worker for stucco functions on Azure",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && shx mkdir -p dist/src && tsc",
"build-nomaps": "npm run build -- --sourceMap false --inlineSources false",
"prepare-package": "ts-node ./scripts/package.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/minimist": "^1.2.0",
"@types/node": "^8.10.59",
"@types/rimraf": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prefer-arrow": "^1.1.7",
"jest": "^24.9.0",
"node-pre-gyp": "^0.14.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"shx": "^0.3.2",
"string-replace-webpack-plugin": "^0.1.3",
"terser-webpack-plugin": "^2.3.5",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"webpack": "~4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@azure/functions": "^1.0.3",
"azure-functions-nodejs-worker": "git+https://github.com/graphql-editor/azure-functions-nodejs-worker.git#prepare-for-package-json",
"grpc": "^1.24.2",
"minimist": "^1.2.0",
"stucco-js": "^0.4.1"
},
"files": [
"dist"
],
"main": "dist/src/nodejsWorker.js"
}