-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 907 Bytes
/
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
{
"name": "server-side-renderer",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"bull": "^4.16.4",
"express": "^4.21.1",
"puppeteer-core": "^23.7.1",
"ramda": "^0.30.1",
"tree-kill": "^1.2.2",
"uuid": "^11.0.3"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.7.0",
"node-fetch": "^2",
"nodemon": "^3.1.7"
},
"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\""
}
}