forked from rahul27458/studynotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.49 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 4.49 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "studynotes",
"description": "The StudyNotes.org website. AP Notes & College Essays. AP US History Notes.",
"version": "0.3.0",
"author": "Feross Aboukhadijeh <feross@feross.org> (http://feross.org/)",
"browser": {
"ckeditor": "./lib/ckeditor/ckeditor.js",
"jquery-placeholder": "./node_modules/jquery-placeholder/jquery.placeholder.js",
"keymaster": "./node_modules/keymaster/keymaster.js",
"select2": "./lib/select2/select2.js",
"transparency": "./node_modules/transparency/dist/transparency.min.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"ckeditor": "CKEDITOR",
"jquery-placeholder": {
"depends": [
"jquery:jQuery"
]
},
"keymaster": "key",
"select2": {
"exports": "Select2",
"depends": [
"jquery:jQuery"
]
},
"transparency": {
"exports": "Transparency",
"depends": [
"jquery:jQuery"
]
}
},
"bugs": {
"url": "https://github.com/feross/StudyNotes/issues"
},
"dependencies": {
"MD5": "^1.2.0",
"async": "^0.9.0",
"bcrypt": "^0.8.0",
"body-parser": "^1.0.1",
"browserify": "^4.2.3",
"browserify-shim": "^3.6.0",
"bytes": "^1.0.0",
"compression": "^1.0.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^0.4.0",
"connect-slashes": "^1.2.0",
"cookie-parser": "^1.0.1",
"csurf": "^1.1.0",
"debug": "^1.0.4",
"express": "^4.0.0",
"express-session": "^1.0.2",
"font-awesome": "git://github.com/FortAwesome/Font-Awesome",
"html-parser": "^0.7.0",
"html-truncate": "^1.0.3",
"http-status-codes": "^1.0.2",
"humane-js": "^3.1.0",
"jade": "^1.1.5",
"jquery": "^2.1.1",
"jquery-placeholder": "^2.0.7",
"jsdom": "^0.11.1",
"keymaster": "git://github.com/madrobby/keymaster",
"lodash.throttle": "^2.4.1",
"mkdirp": "^0.5.0",
"moment": "^2.5.1",
"mongoose": "~3.8.0",
"mongoose-validator": "^0.2.2",
"netdna": "^0.0.6",
"nib": "^1.0.1",
"node-uuid": "^1.4.1",
"nodemailer": "^1.1.1",
"once": "^1.3.0",
"optimist": "^0.6.0",
"passport": "^0.2.0",
"passport-local": "^1.0.0",
"posix": "^1.0.2",
"purge-netdna": "^1.0.1",
"run-auto": "^1.0.0",
"run-parallel": "^1.0.0",
"run-series": "^1.0.2",
"run-waterfall": "^1.0.2",
"serve-favicon": "^2.0.1",
"stripe": "^2.3.4",
"stylus": "^0.43.1",
"touch": "^0.0.3",
"transparency": "^0.9.14",
"underscore": "1.5.2",
"underscore.string": "^2.3.3",
"ws": "^0.4.31"
},
"devDependencies": {
"formage": "^3.2.14",
"nodemon": "^1.0.17",
"tape": "^2.12.3",
"uglify-js": "^2.4.15",
"watchify": "^0.10.2"
},
"homepage": "http://www.apstudynotes.org",
"keywords": [
"AP notes",
"college essays",
"high school",
"college prep"
],
"license": "GPLv3",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/feross/StudyNotes.git"
},
"scripts": {
"admin": "nodemon admin/index.js",
"build": "npm run build-js && npm run build-css && node ./bin/postbuild.js",
"build-css": "stylus -u nib stylus/main.styl -o out/ --include-css -c && node ./bin/transform-css.js out/main.css",
"build-js": "npm run build-js-main & npm run build-js-extra",
"build-js-extra": "browserify -r ./util-browser -r ./config-browser client/extra.js | uglifyjs -c warnings=false -m > out/extra.js",
"build-js-main": "browserify -r ./util-browser -r ./config-browser client/main.js | uglifyjs -c warnings=false -m > out/main.js",
"db-local": "mkdir -p tmp/db && mongod --dbpath tmp/db",
"db-tunnel": "ssh -L 27017:localhost:27017 -N feross@athena",
"push": "npm version patch && git push && npm publish",
"start": "npm run db-tunnel & npm run build & (sleep 2 && DEBUG=\"studynotes:*\" node run.js)",
"test": "tape test/*.js",
"watch": "npm run db-tunnel & npm run watch-js & npm run watch-css & (sleep 2 && DEBUG=\"studynotes:*\" nodemon run.js)",
"watch-local": "npm run db-local & npm run watch-js & npm run watch-css & (sleep 1 && DEBUG=\"studynotes:*\" nodemon run.js --offline)",
"watch-css": "stylus -u nib stylus/main.styl -o out/ --include-css -w",
"watch-js": "npm run watch-js-main & npm run watch-js-extra",
"watch-js-extra": "watchify -r ./util-browser -r ./config-browser client/extra.js -o out/extra.js -dv",
"watch-js-main": "watchify -r ./util-browser -r ./config-browser client/main.js -o out/main.js -dv"
}
}