-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.4 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
{
"name": "leapcode-monorepo",
"private": true,
"version": "0.0.1",
"description": "Leapcode Monorepo",
"scripts": {
"setup": "npm-run-all setup:*",
"setup:client": "cd ./leapcode-next && npm install",
"setup:server": "cd ./leapcode-core && npm install",
"start" : "npm-run-all -p start:server start:client",
"start:client" : "cd ./leapcode-next && npm run dev",
"start:server" : "cd ./leapcode-core && npm start",
"build": "npm-run-all -p build:*",
"build:client": "cd ./leapcode-next && npm run build",
"test": "npm-run-all test:*",
"test:client": "cd ./leapcode-next && npm test",
"test:server": "cd ./leapcode-core && npm test",
"clean": "npm run clean:deps && npm run clean:coverage && npm run clean:build-artifacts",
"clean:deps": "rm -rf ./node_modules && rm -rf .*/node_modules",
"clean:coverage": "rm -rf .*/coverage",
"clean:build-artifacts": "rm -rf .*/lib"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"shx": "^0.3.3",
"sinon": "^7.4.1",
"sinon-express-mock": "^2.2.1",
"start-server-and-test": "^1.11.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leapcode-Open/leapcode-monorepo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Leapcode-Open/leapcode-monorepo/issues"
},
"homepage": "https://github.com/Leapcode-Open/leapcode-monorepo#readme"
}