This repository was archived by the owner on Jul 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.48 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
{
"name": "darwin",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"install-app": "npm install && lerna bootstrap",
"watch": "npx lerna run watch --parallel",
"watch-fe": "cd ./game-frontend && npm run watch",
"watch-be": "cd ./game-backend && npm run watch",
"build": "npm run build-types && npm run build-fe && npm run build-be",
"build-types": "cd ./darwin-types && cross-env NODE_ENV=production npm run build",
"build-fe": "cd ./game-frontend && cross-env NODE_ENV=production npm run build",
"build-be": "cd ./game-backend && cross-env NODE_ENV=production npm run build",
"start": "npx lerna run start --parallel",
"start-fe": "cd ./game-frontend && cross-env NODE_ENV=production npm run start",
"start-be": "cd ./game-backend && cross-env NODE_ENV=production npm run start",
"test": "npm run test-fe && npm run test-be",
"test-fe": "cd ./game-frontend && cross-env NODE_ENV=test CI=true npm run test",
"test-be": "cd ./game-backend && cross-env NODE_ENV=test CI=true npm run test",
"prettier": "npm run prettier-be && npm run prettier-fe",
"prettier-fe": "cd ./game-frontend && npm run prettier",
"prettier-be": "cd ./game-backend && npm run prettier",
"prettier:fix": "npm run prettier-be:fix && npm run prettier-fe:fix",
"prettier-fe:fix": "cd ./game-frontend && npm run prettier -- --write",
"prettier-be:fix": "cd ./game-backend && npm run prettier -- --write",
"lint": "npx lerna run lint",
"lint-fe": "cd ./game-frontend && npm run lint",
"lint-be": "cd ./game-backend && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-and-conquer/darwin.git"
},
"author": "code-and-conquer",
"license": "ISC",
"bugs": {
"url": "https://github.com/code-and-conquer/darwin/issues"
},
"homepage": "https://github.com/code-and-conquer/darwin#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"concurrently": "^5.1.0",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"lerna": "^3.20.2",
"prettier": "1.19.1",
"typescript": "^3.8.3"
}
}