-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.25 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
{
"name": "mediajel-tracker",
"version": "1.0.0",
"description": "Mediajel Tracker",
"scripts": {
"start": "rimraf dist && rimraf .parcel-cache && concurrently --kill-others \"parcel watch --port 1235 src/index.ts\" \"ts-node ./server/index.ts\" \"tsc --noEmit --watch\" \"parcel --no-cache ./public/index.html\" ",
"predeploy": "node -r dotenv/config deploy/predeploy.js",
"check": "tsc --noEmit",
"deploy": "parcel build src/index.ts",
"postdeploy": "node -r dotenv/config deploy/postdeploy.js",
"build": "parcel build src/index.ts",
"cy:open": "cypress open",
"cy:run": "cypress run --spec 'cypress/e2e/spec.cy.ts'",
"bootstrap-test-server": "rimraf dist && rimraf .parcel-cache && concurrently --kill-others \"parcel watch --port 1235 src/index.ts\" \"ts-node ./server/index.ts\" \"tsc --noEmit --watch\" \"parcel --no-cache ./public/index.test.html\" ",
"test": "start-server-and-test bootstrap-test-server http://localhost:1234 cy:run",
"docs": "jsdoc -c jsdoc.json",
"tracker:generate-environments": "ts-node src/scripts/generateEnvironments.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MediaJel/mediajel-tracker.git"
},
"author": "Pacholo Amit",
"license": "ISC",
"bugs": {
"url": "https://github.com/MediaJel/mediajel-tracker/issues"
},
"alias": {
"src": "./src"
},
"homepage": "https://github.com/MediaJel/mediajel-tracker#readme",
"devDependencies": {
"@parcel/reporter-bundle-analyzer": "^2.12.0",
"@parcel/reporter-bundle-buddy": "^2.12.0",
"@types/cypress": "^1.1.3",
"@types/express": "^5.0.0",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"aws-cli-js": "^2.2.3",
"aws-sdk": "^2.1691.0",
"better-docs": "^2.7.3",
"buffer": "^6.0.3",
"concurrently": "^9.1.0",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"express": "^5.0.1",
"global": "^4.4.0",
"jsdoc": "^4.0.4",
"parcel": "2.12.0",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.8",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"browserslist": [
"since 2017-06"
]
}