-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.06 KB
/
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
{
"name": "api-javascript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js",
"sass:compile": "node-sass --include-path sass public/scss/style.scss public/css/style.css",
"prettier:check": "prettier . --check",
"prettier:fix": "prettier . --write",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"canvas": "^2.8.0",
"cors": "^2.8.5",
"cross-fetch": "^3.1.4",
"dotenv": "^16.0.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"node-fetch": "^3.0.0",
"nodemon": "^3.0.1",
"pm2": "^5.1.2",
"pug": "^3.0.2",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"lint-staged": "^13.0.3",
"node-sass": "^9.0.0",
"prettier": "3.1.0"
},
"optionalDependencies": {
"husky": "^8.0.0"
},
"lint-staged": {
"*.{js,css,md,html}": [
"prettier --check --ignore-unknown"
]
}
}