-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"name": "impact-afg-erm-dash",
"version": "2.2.0",
"description": "Impact / REACH - Afghanistan Emergency Response Mechanism Dashboard",
"scripts": {
"clean": "rimraf client/node_modules client/dist server/node_modules server/dist node_modules",
"precommit": "yarn run lint",
"lint": "eslint --cache client/src server/src",
"lint-fix": "eslint --fix client/src server/src",
"preinstall": "./env/check/node-version.sh && ./env/check/npm-version.sh && ./env/check/yarn-version.sh",
"db:start": "docker-compose -f \"./env/docker/docker-compose.yml\" -p \"mysql.impact.dev\" up --no-recreate",
"db:stop": "docker-compose -f \"./env/docker/docker-compose.yml\" -p \"mysql.impact.dev\" stop",
"server:seed": "cd server && yarn run seed",
"server:build": "cd server && yarn run build",
"server:start": "cd server && yarn start",
"client:build": "cd client && yarn run build",
"client:build:win": "cd client && yarn run build:win",
"client:start": "cd client && yarn start",
"client:open": "opener http://localhost:8001",
"build": "yarn run server:build && yarn run client:build",
"build:win": "yarn run server:build && yarn run client:build:win",
"dev": "concurrently --kill-others 'yarn run db:start' 'yarn run server:start' 'yarn run client:start' 'yarn run client:open'",
"start": "yarn run dev"
},
"author": "Serkan Durusoy<serkan@waat.eu>",
"contributors": [
"Çağrı Yardımcı<cagri@waat.eu>",
"Enrico Cerroni<enrico@waat.eu>",
"Kris Gunciarz<kris@waat.eu>",
"Peter Grzywacz<peter@waat.eu>",
"Piotr Smykaj<piotr.smykaj@waat.eu>",
"Serkan Durusoy<serkan@waat.eu>",
"Tomek Pazio<tomek.pazio@waat.eu>",
"Vamory Traoré<vamory@waat.eu>"
],
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://git.assembla.com/waat/impact.git"
},
"workspaces": [
"client",
"server"
],
"engines": {
"node": ">=8.11.1",
"npm": ">=5.8.0",
"yarn": ">=1.6.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^3.5.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"husky": "^0.14.3",
"opener": "^1.4.3",
"prettier": "^1.13.4",
"prettier-eslint": "^8.8.1",
"rimraf": "^2.6.2"
}
}