-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "underthelimits",
"version": "0.0.0",
"description": "Under the limits - The game",
"main": "index.js",
"scripts": {
"postinstall": "./server/scripts/postinstall.sh",
"clean": "rm -rf server/db.sqlite3; rm -rf server/scripts/*.sql; rm -rf server/node_modules; rm -rf client/node_modules && rm -rf node_modules",
"dev": "yarn --cwd client build:dev & nodemon --ignore './server/avatars/' index.js && fg",
"start:dev": "yarn dev",
"start:qa": "node index.js && fg",
"populate:dev": "node server/scripts/populate.js",
"lint": "yarn --cwd client lint; yarn --cwd server lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thenkei/UnderTheLimits.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Thenkei/UnderTheLimits/issues"
},
"homepage": "https://github.com/Thenkei/UnderTheLimits#readme",
"devDependencies": {
"husky": "^2.1.0",
"node-cipher": "^6.3.3"
},
"private": true,
"workspaces": [
"client",
"server"
],
"dependencies": {
"express": "^4.16.4",
"morgan": "^1.9.1",
"sqlite3": "^4.0.6"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
}
}