-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 987 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 987 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": "gro-city-frontend",
"version": "1.0.0",
"description": "A project which allows user to create plant project boards for planting projects.",
"main": "main.js",
"scripts": {
"build": "browserify scripts/main.js -o bundle.js",
"watch": "watchify scripts/main.js -o bundle.js",
"dev-server": "live-server .",
"dev": "run-all \"npm run watch\" \"npm run dev-server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/easterjd/gro-city-frontend.git"
},
"keywords": [
"plants",
"gro-city",
"planting"
],
"author": "Christopher Peterson, Dillon Easter, Surya Krishna Moorthy",
"license": "ISC",
"bugs": {
"url": "https://github.com/easterjd/gro-city-frontend/issues"
},
"homepage": "https://github.com/easterjd/gro-city-frontend#readme",
"dependencies": {
"browserify": "^16.2.2",
"live-server": "^1.2.0",
"moment": "^2.22.2",
"run-all": "^1.0.1",
"watchify": "^3.11.0"
}
}