-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "friendsofnoise",
"version": "1.0.0",
"description": "Friends of Noise Organization now has a web app for members!",
"main": "app.js",
"scripts": {
"client": "cd front-of-noise && npm start",
"server": "cd backend_api && npm start",
"dev": "concurrently --kill-others-on-fail \"npm run client\" \"npm run server\"",
"test": "echo \"Error: PLEASE MAKE A TEST!!!!! :)\" && exit 1",
"sass:compile": "node-sass public/stylesheets/scss/main.scss public/stylesheets/css/style.css -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Abainesh/FriendsOfNoise.git"
},
"keywords": [
"friendsofnoise",
"all",
"ages",
"music",
"memberships"
],
"author": "Friends of Friends of Noise",
"license": "ISC",
"bugs": {
"url": "https://github.com/Abainesh/FriendsOfNoise/issues"
},
"homepage": "https://github.com/Abainesh/FriendsOfNoise#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.16.4",
"helmet": "^3.18.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.19.0"
}
}