-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 996 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 996 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": "v-inspired",
"version": "1.0.0",
"description": "Yoti hack day - V-inspired",
"main": "server.js",
"scripts": {
"buildCss": "sass --watch sass/styles.scss:public/static/styles.css",
"devStart": "nodemon server.js",
"build:serve": "npm run buildCss | npm run devStart",
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"zip-repo": "git archive --format=zip HEAD > vinspired.zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAC9/v-inspired.git"
},
"author": "tom,emily,ewelina",
"license": "ISC",
"bugs": {
"url": "https://github.com/FAC9/v-inspired/issues"
},
"homepage": "https://github.com/FAC9/v-inspired#readme",
"dependencies": {
"handlebars": "^4.0.6",
"hapi": "^16.1.0",
"inert": "^4.1.0",
"jquery": "^3.1.1",
"vision": "^4.1.1",
"yoti-node-sdk": "^1.0.2"
},
"devDependencies": {
"nodemon": "^1.11.0",
"sass": "^0.5.0"
}
}