-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.8 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "todo-app",
"version": "0.1.0",
"description": "A todo list manager written with angular",
"main": "server.js",
"directories": {
"test": "test"
},
"engines": {
"node": "6.1.0"
},
"scripts": {
"test": "npm run test:backend & npm run test:unit",
"test:backend": "mocha backend/**/*.test.js",
"test:unit": "karma start",
"heroku-postbuild": "API_URL=/api ./node_modules/webpack/bin/webpack.js",
"start": "node server.js",
"start:devFrontend": "webpack-dev-server --inline --hot",
"start:devBackend": "DEBUG=todo* nodemon ./backend/development-server.js",
"start:db": "mongod -dbpath=./backend/data/db --smallfiles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fraziermork/todo-app.git"
},
"author": "Frazier Mork <[email protected]> (https://frazier-fibonacci.herokuapp.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fraziermork/todo-app/issues"
},
"homepage": "https://github.com/fraziermork/todo-app#readme",
"dependencies": {
"angular": "^1.5.7",
"angular-cookies": "^1.5.7",
"angular-drag-and-drop-lists": "^1.4.0",
"angular-route": "^1.5.7",
"autoprefixer": "^6.3.7",
"babel": "^6.5.2",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"baggage-loader": "^0.2.4",
"bcrypt": "^0.8.7",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.6",
"bootstrap-loader": "^1.0.10",
"bootstrap-sass": "^3.3.6",
"chalk": "^1.1.3",
"clean-webpack-plugin": "^0.1.9",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"expose-loader": "^0.7.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"font-awesome": "^4.6.3",
"html-loader": "^0.4.3",
"image-webpack-loader": "^1.8.0",
"json-loader": "^0.5.4",
"jsonwebtoken": "^7.1.7",
"lodash": "^4.14.1",
"lodash.assign": "^4.0.9",
"lodash.defaults": "^4.0.1",
"mongoose": "^4.5.8",
"morgan": "^1.7.0",
"node-sass": "^3.8.0",
"postcss-loader": "^0.9.1",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"devDependencies": {
"angular-mocks": "^1.5.7",
"btoa": "^1.1.2",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.11.1",
"eslint-plugin-import": "^1.16.0",
"jasmine-core": "^2.4.1",
"karma": "^1.1.1",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.1",
"nodemon": "^1.11.0"
}
}