-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 KB
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
45
46
47
48
{
"name": "stardust",
"version": "1.0.0",
"description": "A simple site that displays media from a user's profile, as well as allowing them to search for media via hashtag.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm prune | npm i",
"build:scss": "node ./_npm-scripts/build-scss.js -c",
"watch": "node ./_npm-scripts/watch.js"
},
"engines": {
"node": "6.1.0",
"npm": "3.8.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devknights/stardust.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/devknights/stardust/issues"
},
"homepage": "https://github.com/devknights/stardust#readme",
"config": {
"webroot": "/",
"scss": {
"srcDir": "public/src/scss/",
"distDir": "public/dist/css/",
"srcFile": "kickoff.scss",
"distFile": "app.css",
"sourceMap": "app.css.map"
}
},
"dependencies": {
"express": "^4.13.4",
"instagram-node": "^0.5.8",
"jade": "^1.11.0",
"request": "^2.74.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"cssnano": "^3.6.2",
"gaze": "^1.0.0",
"postscss": "^1.4.1"
}
}