forked from opencollective/opencollective-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 4.76 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
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
137
{
"name": "opencollective-website",
"version": "0.1.172",
"engines": {
"node": "6.2.2",
"npm": "3.9.5"
},
"browserify": {
"transform": [
"babelify",
"envify"
]
},
"scripts": {
"start": "NODE_CONFIG_DIR=./server/config node server/dist",
"dev": "npm run build && WEBSITE_PORT=3000 nf start -j Procfile_dev",
"hint": "eslint '**/*.js' --quiet",
"pretest": "npm run hint",
"test": "npm run test:server && npm run test:unit",
"test:server": "NODE_CONFIG_DIR=./server/config mocha --opts test/unit/mocha.opts test/server",
"test:unit": "NODE_CONFIG_DIR=./server/config mocha test/unit/ --opts test/unit/mocha.opts --reporter-options mochaFile=$(bash scripts/test_output_dir.sh junit)/junit.xml",
"posttest": "npm run test:e2e",
"test:e2e": "npm run test:e2e:exec api:run website:run website:testE2E",
"test:e2e:exec": "npm run rexec:api test_e2e.sh",
"nightwatch": "NODE_CONFIG_DIR=./server/config ./node_modules/nightwatch/bin/nightwatch --config nightwatch.json",
"build": "gulp build && npm run build:server && npm run build:frontend",
"build:server": "rm -rf server/dist && mkdir server/dist && babel -D ./server/src -d ./server/dist",
"build:frontend": "mkdir -p frontend/dist/js && browserify frontend/src/client.js | uglifyjs -cm --screw-ie8 > frontend/dist/js/bundle.js ",
"watch:js": "mkdir -p frontend/dist/js && watchify frontend/src/client.js -o frontend/dist/js/bundle.js -dv",
"watch:server": "NODE_CONFIG_DIR=./server/config nodemon -e js,hbs -w server/src -w frontend/src",
"watch:test": "mocha test/unit/ --opts test/unit/mocha.opts --watch",
"postinstall": "bash scripts/postinstall.sh",
"git:clean": "git branch --merged | grep -v \\* | grep -v master | grep -v dev | xargs -n 1 git branch -d",
"deploy:staging": "bash -x scripts/deploy.sh staging",
"deploy:production": "bash -x scripts/deploy.sh production",
"rexec:api": "bash scripts/remote_exec_api.sh",
"install:debs": "npm run rexec:api install_apt_get_debs.sh"
},
"dependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-lodash": "3.2.8",
"babel-plugin-transform-es2015-modules-commonjs": "6.14.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"babel-register": "6.14.0",
"babelify": "7.2.0",
"basscss": "8.0.1",
"basscss-background-images": "0.1.1",
"browserify": "10.2.6",
"cache-bust": "0.0.2",
"chai": "3.5.0",
"classnames": "2.2.4",
"compression": "1.6.1",
"config": "1.20.1",
"cssnano": "3.5.2",
"ejs": "2.4.1",
"envify": "3.4.0",
"eslint-plugin-import": "1.14.0",
"eslint-plugin-mocha": "4.5.1",
"eslint-plugin-react": "6.2.0",
"express": "4.13.4",
"express-hbs": "0.8.4",
"express-server-status": "1.0.3",
"express-session": "1.13.0",
"gulp": "3.9.1",
"gulp-changed": "1.3.0",
"gulp-postcss": "6.1.1",
"gulp-svg-sprite": "1.2.19",
"gulp-util": "3.0.7",
"gulp-watch": "4.3.5",
"history": "1.17.0",
"image-size": "0.5.0",
"isomorphic-fetch": "2.2.1",
"joi": "6.10.1",
"jwt-decode": "1.5.1",
"jwt-simple": "0.3.1",
"localmockage": "0.0.1",
"lodash": "4.15.0",
"marked": "0.3.5",
"moment": "2.13.0",
"morgan": "1.7.0",
"normalizr": "1.4.1",
"numbro": "1.6.2",
"postcss-cssnext": "2.5.2",
"postcss-discard-comments": "2.0.4",
"postcss-import": "8.1.0",
"postcss-nested": "1.0.0",
"query-string": "3.0.3",
"react": "0.14.8",
"react-datepicker": "0.23.2",
"react-dom": "0.14.8",
"react-onclickoutside": "4.9.0",
"react-redux": "4.4.5",
"react-router": "1.0.3",
"react-stripe-checkout": "1.8.0",
"redux": "3.5.2",
"redux-logger": "2.6.1",
"redux-router": "1.0.0-beta8",
"redux-thunk": "1.0.3",
"request": "2.72.0",
"robots.txt": "1.1.0",
"serialize-javascript": "1.2.0",
"serve-favicon": "2.3.0",
"svg-to-png": "3.1.0",
"uglify-js": "2.6.2",
"universal-analytics": "0.3.11"
},
"devDependencies": {
"chai": "3.5.0",
"chai-spies": "0.7.1",
"chromedriver": "2.21.2",
"dotenv": "2.0.0",
"eslint": "3.1.1",
"eslint-config-opencollective": "1.1.5",
"eslint-plugin-react": "6.2.0",
"expect": "1.18.0",
"foreman": "1.4.1",
"jscs": "2.11.0",
"jsdom": "3.1.2",
"loose-envify": "1.1.0",
"mocha": "2.4.5",
"mocha-circleci-reporter": "0.0.1",
"nightwatch": "0.8.18",
"nock": "2.18.2",
"nodemon": "1.9.2",
"react-addons-test-utils": "0.14.8",
"redux-mock-store": "1.0.2",
"sinon": "1.17.3",
"supertest": "1.2.0",
"watchify": "3.7.0"
},
"License": "MIT"
}