-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 883 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 883 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": "cssify-backend",
"version": "0.0.1",
"description": "Backend to CSSify",
"main": "index.js",
"scripts": {
"server": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd ../client && npm start",
"dev": "concurrently --names \"server,client\" \"npm run server --silent\" \"npm run client --silent\""
},
"engines": {
"node": "<=14.15.4"
},
"keywords": [],
"author": "Siddharth S",
"license": "MIT",
"dependencies": {
"@node-minify/core": "^6.2.0",
"@node-minify/cssnano": "^5.3.0",
"compression": "^1.7.4",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.22.0",
"node-sass": "^4.14.1",
"node-sass-json-importer": "^4.3.0",
"socket.io": "^3.1.2",
"uuid": "^8.1.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}