-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
45 lines (45 loc) · 868 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "stylify-me",
"version": "3.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node app.mjs",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"ejs": "^3.1.6",
"errorhandler": "^1.5.1",
"express": "^4.17.3",
"morgan": "^1.10.0",
"puppeteer": "^13.5.2",
"serve-favicon": "^2.5.0",
"serve-static": "^1.15.0"
},
"engines": {
"node": "16.x.x",
"npm": "8.x.x"
},
"devDependencies": {
"@types/express": "^4.17.13",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
},
"jest": {
"moduleFileExtensions": [
"mjs",
"js",
"jsx",
"ts",
"tsx",
"json",
"node"
],
"testMatch": [
"**/__tests__/**/*.mjs"
]
}
}