forked from wunaidage/ffxiv-craft-opt-web
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 738 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 738 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
{
"author": "Gordon Tyler",
"name": "ffxiv-craft-opt-web",
"description": "FFXIV Crafting Optimizer Website",
"version": "0.0.1",
"homepage": "http://ffxiv.lokyst.net",
"repository": {
"type": "git",
"url": "git@github.com:doxxx/ffxiv-craft-opt-web.git"
},
"engines": {
"node": "*"
},
"scripts": {
"build": "sass app/scss/main.scss app/css/main.css",
"watch": "sass --watch app/scss/main.scss app/css/main.css",
"start": "concurrently \"npm run watch\" \"node server.js\""
},
"dependencies": {
"connect": "^3.4.0",
"morgan": "^1.6.1",
"sass": "^1.51.0",
"serve-static": "^1.10.0"
},
"devDependencies": {
"browser-sync": "^2.23.6",
"concurrently": "^7.1.0"
}
}