-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 3.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 3.78 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
{
"name": "givesource",
"version": "4.2.17",
"description": "Pay-as-you-go highly scalable software application that helps community foundations set up and manage a platform where they can raise funds for non-profits through event pages.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/firespring/givesource.git"
},
"scripts": {
"cloudformation:audit": "cd packages/cloudformation && npm audit",
"cloudformation:build": "cd packages/cloudformation && npm run build",
"cloudformation:clean": "cd packages/cloudformation && npm run clean",
"cloudformation:create": "cd packages/cloudformation && npm run create",
"cloudformation:delete": "cd packages/cloudformation && npm run delete",
"cloudformation:install": "cd packages/cloudformation && npm install",
"cloudformation:release": "cd packages/cloudformation && npm run release",
"cloudformation:release:force": "cd packages/cloudformation && npm run release:force",
"cloudformation:update": "cd packages/cloudformation && npm run update",
"frontend:audit": "cd packages/frontend && npm audit",
"frontend:build": "cd packages/frontend && npm run build",
"frontend:cache": "cd packages/frontend && npm run cache",
"frontend:clean": "cd packages/frontend && npm run clean",
"frontend:deploy": "cd packages/frontend && npm run deploy",
"frontend:dev:admin": "cd packages/frontend && npm run dev:admin",
"frontend:dev:public": "cd packages/frontend && npm run dev:public",
"frontend:install": "cd packages/frontend && npm install",
"frontend:release": "cd packages/frontend && npm run release",
"frontend:release:force": "cd packages/frontend && npm run release:force",
"frontend:lint": "eslint --cache --ext .js,.vue packages/frontend/",
"frontend:lint-fix": "eslint --cache --ext .js,.vue --fix packages/frontend/",
"lambda:audit": "cd packages/lambda && npm audit",
"lambda:build": "cd packages/lambda && npm run build",
"lambda:clean": "cd packages/lambda && npm run clean",
"lambda:delete-test-payments": "cd packages/lambda && npm run delete-test-payments",
"lambda:delete-payments-by-transaction-ids": "cd packages/lambda && npm run delete-payments-by-transaction-ids",
"lambda:deploy": "cd packages/lambda && npm run deploy",
"lambda:install": "cd packages/lambda && npm install",
"lambda:release": "cd packages/lambda && npm run release",
"lambda:seed": "cd packages/lambda && npm run seed",
"lambda:setting": "cd packages/lambda && npm run setting",
"lambda:release:force": "cd packages/lambda && npm run release:force",
"lambda:lint": "eslint --cache --ext .js,.vue packages/lambda/",
"lambda:lint-fix": "eslint --cache --ext .js,.vue --fix packages/lambda/",
"audit": "npm run cloudformation:audit && npm run frontend:audit && npm run lambda:audit",
"clean": "npm run cloudformation:clean && npm run frontend:clean && npm run lambda:clean",
"build": "npm run cloudformation:build && npm run frontend:build && npm run lambda:build",
"deploy": "npm run frontend:deploy && npm run lambda:deploy",
"postinstall": "[ -f \".env\" ] || cp .env.example .env",
"release": "npm run cloudformation:release && npm run frontend:release && npm run lambda:release",
"release:force": "npm run cloudformation:release:force && npm run frontend:release:force && npm run lambda:release:force",
"test": "cd packages/lambda && npm run test",
"lint": "eslint --cache --ext .js,.vue .",
"lint:fix": "eslint --cache --ext .js,.vue --fix ."
},
"author": "Firespring",
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-firespring": "git+https://github.com/firespring/code-standards.git#master",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.1.1"
}
}