-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "L100",
"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"
},
"dependencies": {
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"aws-serverless-express": "^3.3.6",
"body-parser": "^1.19.0",
"domready": "^1.0.8",
"express": "^4.17.1",
"hashids": "1.1.1",
"morgan": "^1.9.1",
"request": "^2.88.0",
"typescript": "^3.7.4"
},
"engines": {
"node": "latest"
},
"devDependencies": {
"@pollyjs/adapter-node-http": "^2.7.0",
"@pollyjs/core": "^2.6.3",
"@pollyjs/persister-fs": "^2.6.3",
"browserify": "^12.0.1",
"chai": "^4.2.0",
"d3": "4.7.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^24.9.0",
"jsdom": "^15.2.1",
"json-diff": "^0.5.4",
"nodemon": "^1.19.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"uglify-js": "^2.7.3"
},
"scripts": {
"start": "node app.js",
"build": "tsc tools/build.ts --outDir build/tools; node build/tools/build.js",
"pretest": "npm run build",
"test": "jest build/",
"watch": "npx nodemon -w src -w index.js -w package.json --exec make",
"lambda:zip": "zip -r function.zip . -x=.git/*",
"lambda:update": "aws lambda update-function-code --function-name L100 --zip-file fileb://function.zip",
"deploy:lambda": "npm run build && npm run lambda:zip && npm run lambda:update",
"deploy:gcloud": "gcloud functions deploy L100 --trigger-http --runtime=nodejs10 --entry-point=compiler"
}
}