-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "crisp-bigquery",
"version": "1.1.1",
"description": "Full stack BigQuery with React and Express in TypeScript",
"author": "winwiz1 <[email protected]> (https://github.com/winwiz1/)",
"contributors": [
"winwiz1 <[email protected]> (https://github.com/winwiz1/)"
],
"license": "MIT",
"homepage": "https://winwiz1.github.io/crisp-bigquery/",
"repository": {
"type": "git",
"url": "https://github.com/winwiz1/crisp-bigquery.git"
},
"keywords": [
"bigquery",
"react",
"redux",
"typescript",
"nodejs",
"express",
"visual-studio-code",
"chrome-devtools",
"webpack",
"webpack-dev-server",
"typestyle",
"react-testing-library",
"supertest",
"jest",
"semantic-ui"
],
"files": [
"./client/*",
"./server/*"
],
"scripts": {
"install": "cd client && yarn",
"postinstall": "cd server && yarn",
"pretest": "cd client && yarn build",
"test": "cd client && yarn test",
"posttest": "cd server && yarn copy && yarn test",
"compile": "cd client && yarn compile",
"postcompile": "cd server && yarn compile",
"build": "cd client && yarn build",
"postbuild": "cd server && yarn prestart",
"build:prod": "cd client && yarn build:prod",
"postbuild:prod": "cd server && yarn prestart",
"start:prod": "cd client && yarn build:prod",
"poststart:prod": "cd server && yarn start:prod",
"run:prod": "cd server && yarn run:prod"
},
"engines" : {
"node" : ">=10.17"
}
}