-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
40
41
42
43
44
45
46
47
{
"name": "mmda",
"version": "0.0.0",
"private": true,
"scripts": {
"build-css": "node-sass --include-path scss scss/style.scss public/stylesheets/style.css",
"start": "npm run build-css && node ./bin/www mmda",
"stop": "killall -SIGINT mmda"
},
"dependencies": {
"angular": "^1.6.6",
"angular-animate": "^1.6.6",
"angular-aria": "^1.6.6",
"angular-filesize-filter": "^0.1.3",
"angular-material": "^1.1.5",
"angular-messages": "^1.6.6",
"angular-sanitize": "^1.6.7",
"angular-ui-router": "^0.4.3",
"audio-metadata": "^0.3.0",
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "~4.15.5",
"fs-meta": "^0.2.1",
"guid": "0.0.12",
"hash-files": "^1.1.1",
"morgan": "~1.9.0",
"oracledb": "^1.13.1",
"os": "^0.1.1",
"q": "^1.5.1",
"serve-favicon": "~2.4.5"
},
"devDependencies": {
"node-sass": "^4.7.2",
"nodemon": "^1.12.1"
},
"nodemonConfig": {
"ignore": [
".git",
"node_modules/**/node_modules",
"public/"
],
"ext": "js json scss"
}
}