-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.17 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
38
39
{
"name": "film-searcher-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"start": "node index",
"dev": "supervisor index",
"build:js": "browserify client/src/js/app.js > client/public/app.js",
"build:js:watch": "watchify -t babelify -t brfs client/src/js/app.js -d -o client/public/app.js -v",
"build:scss": "node-sass client/src/scss/styles.scss client/public/styles.css",
"build:scss:watch": "node-sass client/src/scss/styles.scss client/public/styles.css --watch",
"work": "npm-run-all --parallel dev build:js:watch build:scss:watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"mongoose": "^4.13.1"
},
"devDependencies": {
"angular": "^1.6.6",
"angular-route": "^1.6.6",
"babel-core": "^6.26.0",
"babelify": "^8.0.0",
"brfs": "^1.4.3",
"browserify": "^14.5.0",
"cheerio": "^1.0.0-rc.2",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.2",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"supervisor": "^0.12.0",
"watchify": "^3.9.0"
}
}