-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "counter.interview",
"version": "1.0.0",
"description": "A collaborative collection of interview questions for interviewee http://counter-interview.dev",
"main": "index.js",
"scripts": {
"sass": "node-sass --include-path _sass _sass/main.scss assets/css/main.css",
"sass:watch": "nodemon -e scss -x \"npm run sass\"",
"sass:build": "node-sass --include-path _sass _sass/main.scss _includes/main.css --output-style compressed",
"start:dev": "./development.sh",
"start:prod": "./production.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oleg-koval/counter-interview.dev.git"
},
"keywords": [
"interview",
"questions",
"interview process",
"collection",
"job",
"work",
"interviewer",
"interviewee"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oleg-koval/counter-interview.dev/issues"
},
"homepage": "https://github.com/oleg-koval/counter-interview.dev#readme",
"devDependencies": {
"node-sass": "^4.8.3",
"nodemon": "^1.17.3"
}
}