-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.09 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "reps",
"version": "0.0.1",
"description": "The first and best reputation market.",
"author": "Stephen Malina and Matt Ritter",
"engines": {
"node": "0.10.35"
},
"dependencies": {
"bcrypt": "^0.8.0",
"body-parser": "^1.9.0",
"bootstrap": "~3.3.0",
"browserify": "~6.3.2",
"browserify-shim": "~3.8.0",
"cloudinary": "",
"coffeeify": "^1.0.0",
"connect-livereload": "^0.4.0",
"cookie-session": "~1.1.0",
"cropit": "latest",
"ejs": "^2.2.4",
"events": "^1.0.2",
"express": "~4.9.4",
"express-livereload": "0.0.24",
"express-session": "~1.8.2",
"flux": "^2.0.1",
"jade": "~1.7.0",
"jasmine": "~2.1.0",
"jquery": "~2.1.1",
"jshint": "~2.5.8",
"jsxhint": "~0.5.0",
"karma": "~0.12.24",
"karma-bro": "~0.10.0",
"karma-chrome-launcher": "~0.1.5",
"karma-cjsx-preprocessor": "0.0.5",
"karma-jasmine": "~0.2.3",
"karma-phantomjs-launcher": "~0.1.4",
"karma-react-jsx-preprocessor": "~0.1.1",
"keymirror": "^0.1.1",
"mocha": "^2.2.1",
"mongoose": "~3.8.17",
"mongoose-validator": "^1.0.2",
"newrelic": "~1.14.4",
"nodemailer": "~1.3.0",
"nodemon": "~1.3.7",
"npm-watch": "0.0.0",
"object-assign": "^2.0.0",
"passport": "~0.2.1",
"passport-facebook-token": "^0.4.0",
"passport-local": "~1.0.0",
"passport-oauth": "^1.0.0",
"path": "~0.4.9",
"pubsub-js": "^1.5.0",
"q": "^1.2.0",
"react": "~0.12.0",
"react-router": "0.11.x",
"react-tools": "~0.12.0",
"reactify": "~0.15.2",
"reduce": "~1.0.1",
"watchify": "^2.1.0",
"winston": "^0.8.3"
},
"devDependencies": {
"jasmine-node": "~1.14.5",
"jest": "^0.1.37",
"jest-cli": "^0.4.0"
},
"jshintConfig": {
"node": "true",
"browser": "true",
"newcap": "false"
},
"jest": {
"unmockedModulePathPatterns": [
"react",
"through2"
],
"modulePathIgnorePatterns": [
"/newrelic/",
"/keymirror/"
]
},
"browser": {
"jquery": "./js/lib/jquery/jquery-1.11.1.min.js"
},
"browserify": {
"transform": [
"reactify"
]
},
"scripts": {
"start": "node server.js",
"test": "jest",
"frontend-test": "karma start",
"backend-test": "jasmine-node spec/",
"preinstall": "./scripts/preinstall.sh",
"postinstall": "./scripts/postinstall.sh",
"lint": "jsxhint js/**/*.jsx && jshint api/**/*.js",
"watch": "npm run build-fonts & npm run watch-html & npm run watch-css & npm run build-jsx",
"build-jsx": "watchify --debug --watch js/ --extension=.jsx js/app.jsx -o public/app.js -dv",
"build-css": "cp -r css public/",
"build-html": "cp index.ejs public/index.ejs",
"watch-css": "nodemon -e css --watch css/ --exec 'cp -r css public/'",
"watch-html": "nodemon -e ejs --ignore public/ --watch index.ejs --exec 'cp index.ejs public/index.ejs'",
"build-lib": "cp -r js/lib public/js/",
"build-fonts": "cp -r fonts public/",
"kill": "pkill -f npm & pkill -f node;",
"build-production-js": "browserify --debug --extension=.jsx js/app.jsx -o public/app.js"
}
}