-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 2 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
{
"name": "awesome-g0v-projects",
"version": "1.0.0",
"description": "## Workflow",
"main": "index.js",
"scripts": {
"eslint": "node_modules/.bin/eslint functions tests && cd web && node_modules/.bin/eslint src",
"build": "npm run build:web",
"build:web": "cd web && npm run build && cd ..",
"deploy": "SLS_DEBUG=* node_modules/.bin/serverless deploy",
"deploy:local": "node_modules/.bin/serverless deploy --profile goldax",
"deploy:gh-pages": "cd web && npm run deploy && cd ..",
"invoke:local": "aws lambda invoke --function-name awesome-g0v-projects-dev-process --profile goldax --log-type Tail tests/invoke-result.json",
"test": "node_modules/.bin/jest tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chunyenHuang/awesome-g0v-projects.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chunyenHuang/awesome-g0v-projects/issues"
},
"homepage": "https://awesome.g0v.tw",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.4.0",
"jest-expect-message": "^1.0.2",
"serverless": "^1.68.0",
"serverless-iam-roles-per-function": "^2.0.2",
"serverless-pseudo-parameters": "^2.5.0",
"serverless-s3-sync": "^1.12.0",
"serverless-webpack": "^5.3.1",
"webpack": "^4.42.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@octokit/core": "^3.2.5",
"@octokit/rest": "^17.5.2",
"await-to-js": "^2.1.1",
"csvtojson": "^2.0.10",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"react-markdown": "^4.3.1",
"request": "^2.88.2",
"similarity": "^1.2.1"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js"
],
"testPathIgnorePatterns": [
"node_modules"
],
"setupFilesAfterEnv": [
"jest-expect-message"
],
"verbose": true
}
}