-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 774 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 774 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
35
36
{
"name": "spotify-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"jest": {
"modulePathIgnorePatterns": [
"node_modules"
]
},
"scripts": {
"test": "jest",
"build": "rollup --config",
"start": "nodemon ./index.js 3000"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babel": "^6.23.0",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"request": "^2.88.2",
"rollup": "^2.18.2",
"rollup-plugin-postcss": "^3.1.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^4.0.4",
"isomorphic-fetch": "^2.2.1"
}
}