This repository has been archived by the owner on Jul 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.86 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
{
"name": "adobe-home-automation",
"description": "Technical Assessment - Senior Software Development Engineer",
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"cypress": "^12.16.0",
"esbuild": "^0.18.11",
"esbuild-jest": "^0.5.0",
"eslint": "^8.44.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"typescript": "^5.1.6"
},
"scripts": {
"dev": "esbuild src/index.ts --bundle --outfile=index.js --sourcemap --loader:.html=text --watch",
"serve": "esbuild src/index.ts --bundle --servedir=./ --outdir=./ --sourcemap --loader:.html=text",
"build": "npm run lint && npm run jest && esbuild src/index.ts --bundle --outfile=index.js --sourcemap --loader:.html=text",
"build-prod": "npm run lint && npm run jest && esbuild src/index.ts --bundle --outfile=index.js --minify --loader:.html=text && npm run cypress:chrome",
"serve-prod": "esbuild --servedir=./assignment",
"lint": "eslint . --fix",
"jest": "jest --coverage",
"cypress:open": "cypress open",
"cypress:chrome": "cypress run --browser chrome --config video=false,screenshotOnRunFailure=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucaNerlich/adobe-home-automation.git"
},
"author": {
"name": "Luca Nerlich",
"email": "[email protected]",
"url": "https://lucanerlich.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/LucaNerlich/adobe-home-automation/issues"
},
"homepage": "https://github.com/LucaNerlich/adobe-home-automation#readme",
"engines": {
"node": "16.15.0",
"npm": "8.5.5"
}
}