-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "sliding",
"author": "Roboku",
"version": "0.0.0",
"description": "SEP 2019 - VLU K22T - Roboku",
"engines": {
"node": "10.16.0"
},
"license": "Apache-2.0",
"scripts": {
"postinstall": "npm run setup",
"start": "npm run server",
"dev": "concurrently \"npm run client\" \"npm run server\"",
"client": "cd client && npm run serve",
"server": "cd server && npm start",
"build": "concurrently 'npm:build:*'",
"build:client": "cd client && npm run build",
"setup": "concurrently 'npm:setup:*'",
"setup:server": "cd server && npm install",
"setup:client": "cd client && npm install",
"lint": "concurrently 'npm:lint:*'",
"lint:server": "cd server && npm run lint",
"lint:client": "cd client && npm run lint",
"test": "concurrently 'npm:test:*'",
"test:server": "cd server && npm run test",
"git:add": "git add ."
},
"pre-commit": [
"lint",
"test",
"git:add"
],
"dependencies": {
"concurrently": "^4.1.0"
},
"devDependencies": {
"pre-commit": "^1.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danztran/sliding.git"
},
"bugs": {
"url": "https://github.com/danztran/sliding/issues"
},
"homepage": "https://github.com/danztran/sliding#readme"
}