-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.75 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.75 KB
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
{
"name": "simple-fullstack",
"version": "0.1.0",
"description": "a javascript framework that will run an express server and connect it to a mongodb instance. uses mongoose for schemas, models, queries etc. comes with pre-fab user schema and auth router. pre-fab client-side session mantenance as well.\n\nin dev mode, auto-transpiles es6 and scss to es5 and css, browserifying all imported modules along the way.",
"scripts": {
"go": "npm run stop && npm run watch && npm run dev",
"deploy": "git push origin master && git push heroku master",
"dev": "NODE_ENV=development nodemon --use_strict server.js",
"name-project": "echo \"\\033[04mPlease enter project name (no spaces): \\033[0m\\033[32m\" && read project_name && sed '1 d' ./server.js > temp && mv temp ./server.js && echo \"global.PROJECT_NAME = '$project_name'\" | cat - server.js > temp && mv temp server.js",
"killmongo": "bash kill.sh mongo",
"postinstall": "touch ./config/secrets.js",
"start": "node --use_strict server.js",
"stop": "bash kill.sh",
"watch": "npm run watch-js && npm run watch-css && echo '\n\n===== watching js and scss files in src/, writing changes to public/ =====\n\n'&",
"watch-js": "./node_modules/.bin/watchify src/scripts/app.js --debug --verbose --transform babelify -o public/assets/js/app.js&",
"watch-css": "./node_modules/.bin/node-sass -w --output-style compressed src/styles/style.scss public/assets/css/style.css&",
"init-dev": "npm run name-project && npm install"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/magentanova/tiy-full-stack.git"
},
"keywords": [
"babel",
"build",
"scss",
"node"
],
"author": {
"name": "Travis Hubbard",
"email": "t3patterson@gmail.com",
"url": "http://github.com/t3patterson"
},
"contributors": [
{
"name": "Justin Richards",
"email": "richards.justind@gmail.com",
"url": "http://github.com/magentanova"
}
],
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"node-sass": "^3.7.0",
"nodemon": "^1.11.0",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
},
"dependencies": {
"backbone": "^1.3.3",
"body-parser": "^1.15.2",
"bootstrap-sass": "^3.3.7",
"cookie-parser": "^1.4.3",
"ejs": "^2.4.2",
"express": "^4.14.0",
"express-session": "^1.14.0",
"jquery": "2.2.4",
"mongoose": "^4.5.3",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"react": "^15.1.0",
"react-dom": "^15.1.0"
}
}