-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 KB
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": "cssanalyzer-server",
"version": "0.0.0",
"description": "Analyze cool website's CSS.",
"private": true,
"engines": {
"node": "14.17.4"
},
"scripts": {
"start": "node ./bin/www.js",
"build": "npm run clean && next build",
"dev": "NODE_ENV=development nodemon ./bin/www",
"deploy-dev": "npm install && npm run build && eb deploy eb-next-app-dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cssAnalyzer/cssAnalyzer-server.git"
},
"author": "soodev20@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/cssAnalyzer/cssAnalyzer-server/issues"
},
"dependencies": {
"i": "^0.3.7",
"cors": "^2.8.5",
"morgan": "~1.9.1",
"dotenv": "^10.0.0",
"express": "^4.16.4",
"puppeteer": "^10.4.0",
"http-errors": "^1.6.3",
"get-image-colors": "^4.0.0",
"@mdn/browser-compat-data": "^4.0.5"
},
"devDependencies": {
"debug": "~2.6.9",
"eslint": "^7.32.0",
"nodemon": "^2.0.13"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}