-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
{
"name": "munch-punch",
"version": "0.0.1",
"description": "Testing stuff",
"main": "index.js",
"scripts": {
"start-dev": "concurrently --kill-others-on-fail \"cd api && nodemon --exec npm start\" \"cd web && npm start\"",
"test": "concurrently --kill-others-on-fail \"cd api && npm test\" \"cd web && npm test\"",
"lint": "concurrently \"cd api && npm run lint\" \"cd web && npm run lint\"",
"lint-fix": "concurrently \"cd web && npm run lint -- --fix\" \"cd api && npm run lint -- --fix\"",
"fmt": "prettier --ignore-path coverage --write '{api,web}/**/{*.js,*.mjml}'",
"fix": "npm run fmt && npm run lint-fix",
"start": "npm run build && cd api && npm start",
"build": "cd web && npm run build",
"install-web": "cd web && npm install",
"install-api": "cd api && npm install",
"install": "npm run install-web && npm run install-api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dshishkov/munch-punch.git"
},
"keywords": [
"testing"
],
"author": "Dimitar Shishkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/dshishkov/munch-punch/issues"
},
"homepage": "https://github.com/dshishkov/munch-punch#readme",
"devDependencies": {
"eslint": "^7.0.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-react-hooks": "^4.0.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.5"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"concurrently": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3"
}
}