-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.57 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
{
"name": "piggy-bank-of-happiness",
"version": "1.0.0",
"description": "設計給非營利事業組織兒少陪伴單位的電子資訊系統,讓孩子們透過執行任務獲得點數,累積的點數可向機構換取獎品或是客製化的需求(例如:修鞋,修車)。",
"main": "index.js",
"scripts": {
"push": "npm run amplify_push",
"amplify_push": "amplify api gql-compile && npm run amplify_update_config && amplify push -y && npm run amplify_update_schema",
"amplify_update_schema": "amplify codegen && rm -rf mobile/src/graphql && cp -r src/graphql web/src && mv src/graphql mobile/src",
"amplify_update_config": "cp aws-exports.js web/src/aws-exports.js && cp aws-exports.js mobile/aws-exports.js",
"amplify_checkout_dev": "amplify env checkout develop && npm run amplify_update_config",
"amplify_checkout_prd": "amplify env checkout prd && npm run amplify_update_config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chunyenHuang/piggy-bank-of-happiness.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chunyenHuang/piggy-bank-of-happiness/issues"
},
"homepage": "https://github.com/chunyenHuang/piggy-bank-of-happiness#readme",
"devDependencies": {
"aws-sdk": "^2.720.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.20.2"
},
"dependencies": {
"clsx": "^1.1.1",
"uuid": "^8.3.0"
}
}