-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.4 KB
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
{
"name": "beer-temperature-app",
"version": "1.0.0",
"description": "An awesome app to show and alert a truck diver regarding the temperature each beer is being kept inside container in the truck. ",
"main": "index.ts",
"author": "rodrigopavezi",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/jsdom": "^16.2.1",
"@types/moxios": "^0.4.9",
"@types/puppeteer": "^2.0.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"html-webpack-plugin": "^4.3.0",
"husk": "^0.5.3",
"jest": "^25.5.3",
"jest-cucumber": "^2.0.11",
"lint-staged": "^10.2.1",
"moxios": "^0.4.0",
"prettier": "^2.0.5",
"puppeteer": "^3.0.2",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"eslint-plugin-react": "^7.19.0",
"express": "^4.17.1",
"grommet": "^2.13.0",
"polished": "^3.5.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.0"
},
"scripts": {
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "yarn build && jest --collectCoverage --testPathPattern=\".test.*\" --detectOpenHandles",
"test:e2e": "yarn build && jest --runInBand --testPathPattern=\".steps.*\" --detectOpenHandles",
"test:ci": "CI=yes yarn test:unit && CI=yes yarn test:e2e",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"build": "rm -rf dist && yarn build:server && yarn build:client",
"build:client": "webpack --config ./webpack/client.config.js",
"build:server": "webpack --config ./webpack/server.config.js",
"start": "yarn build && node dist/index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}