-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1010 Bytes
/
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": "@unwelch/unwel.ch",
"homepage": "https://unwel.ch",
"version": "0.1.0",
"description": "unwel.ch application",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/unwelch/unwel.ch"
},
"scripts": {
"start:frontend": "cd frontend; yarn start",
"start:backend": "cd backend; yarn run dev",
"start": "concurrently -k 'yarn start:frontend' 'yarn start:backend'",
"lint": "eslint --ext .js,.jsx . --fix --quiet",
"test:e2e": "testcafe 'chrome:headless' ./e2e",
"test:e2e:debug": "testcafe 'chrome' ./e2e"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"yarn lint --fix",
"git add"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"concurrently": "^3.5.1",
"eslint-config-gerard": "^0.0.2",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"node-fetch": "^2.3.0",
"testcafe": "^0.23.2"
},
"dependencies": {}
}