-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 909 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 909 Bytes
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
{
"name": "server-side-renderer",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"bull": "^4.16.5",
"express": "^5.2.1",
"puppeteer-core": "^24.42.0",
"ramda": "^0.32.0",
"tree-kill": "^1.2.2",
"uuid": "^14.0.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/node": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"babel-jest": "^30.3.0",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^29.15.2",
"jest": "^30.3.0",
"node-fetch": "^2",
"nodemon": "^3.1.14"
},
"scripts": {
"start-dev": "nodemon --watch src/ --ignore 'src/**/*.test.js' --exec babel-node src/index.js",
"build": "babel src/ -d build/ --ignore 'src/**/*.test.js'",
"start": "node build/index.js",
"test": "jest --watchAll",
"test-ci": "jest --ci",
"lint": "eslint \"./src\""
}
}