-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 1.04 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
{
"name": "nodeangularstarterkitwithmaterial",
"description": "A starter project for anyone wanting to build an Angular SPA app with Angular Material, using NodeJS",
"author": "Ryan Ward",
"version": "1.0.0",
"main": "server/server.js",
"dependencies": {
"express": "*",
"body-parser": "*",
"cookie-parser": "*",
"angular": "*",
"angular-route": "*",
"angular-material": "*",
"angular-aria": "*",
"angular-messages": "*",
"angular-animate": "*",
"angular-cookies": "*",
"mongoose": "*",
"lodash": "*",
"bcrypt-nodejs": "*",
"jsonwebtoken": "*"
},
"devDependencies": {
"grunt": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-sass": "*",
"grunt-contrib-cssmin": "*",
"grunt-contrib-watch": "*",
"grunt-nodemon": "*",
"grunt-concurrent": "*",
"grunt-open": "*"
}
}