-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.74 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
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
{
"name": "@graffiticode/l137",
"version": "0.0.1",
"description": "Compiler as a service.",
"author": "Art Compiler LLC",
"license": "MIT",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/graffiticode/L0"
},
"type": "module",
"dependencies": {
"@google-cloud/opentelemetry-cloud-trace-exporter": "^0.7.0",
"@graffiticode/basis": "^1.0.11",
"@opentelemetry/api": "^0.13.0",
"@opentelemetry/core": "^0.13.0",
"@opentelemetry/metrics": "^0.13.0",
"@opentelemetry/node": "^0.13.0",
"@opentelemetry/plugin-dns": "^0.11.0",
"@opentelemetry/plugin-express": "^0.11.0",
"@opentelemetry/plugin-http": "^0.13.0",
"@opentelemetry/plugin-https": "^0.13.0",
"@opentelemetry/tracing": "^0.13.0",
"@types/react": "^16.14.5",
"@types/react-dom": "^16.9.12",
"aws-serverless-express": "^3.3.6",
"bent": "^7.3.12",
"body-parser": "^1.19.0",
"d3": "^6.7.0",
"domready": "^1.0.8",
"express": "^4.17.1",
"graphql": "^15.5.0",
"hashids": "1.1.1",
"morgan": "^1.10.0",
"request": "^2.88.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-syntax-jsx": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@pollyjs/adapter-node-http": "^2.7.0",
"@pollyjs/core": "^2.6.3",
"@pollyjs/persister-fs": "^2.6.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"browserify": "^12.0.1",
"chai": "^4.3.4",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"jest": "^24.9.0",
"jsdom": "^15.2.1",
"json-diff": "^0.5.4",
"json-loader": "^0.5.7",
"nodemon": "^1.19.4",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"sinon": "^7.5.0",
"style-loader": "^2.0.0",
"supertest": "^4.0.2",
"uglify-js": "^2.7.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
},
"scripts": {
"build": "npx webpack --config configs/webpack.config.js --mode production",
"build:dev": "npx webpack --config configs/webpack.config.js --mode development",
"start": "node app.js",
"test": "jest --config configs/jest.config.js",
"watch": "nodemon -w src -w app.js -w package.json --exec make",
"lambda:zip": "zip -r function.zip . -x=.git/*",
"lambda:update": "aws lambda update-function-code --function-name L0 --zip-file fileb://function.zip",
"deploy:lambda": "npm run build && npm run lambda:zip && npm run lambda:update",
"deploy:gcloud": "gcloud functions deploy L0 --trigger-http --runtime=nodejs10 --entry-point=compiler"
}
}