-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.81 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.81 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
{
"name": "project-m",
"version": "0.0.0",
"private": true,
"scripts": {
"postinstall": "./node_modules/webpack/bin/webpack.js --config ./webpack.config.js --progress --colors -p",
"prestart": "node_modules/sequelize-cli/bin/sequelize db:migrate",
"start": "node ./bin/www",
"pretest": "NODE_ENV=test node_modules/sequelize-cli/bin/sequelize db:migrate",
"test": "npm run serverTests && npm run componentTests",
"serverTests": "NODE_ENV=test node --harmony node_modules/jasmine/bin/jasmine.js",
"componentTests": "NODE_ENV=test node ./node_modules/karma-cli/bin/karma start",
"preacceptanceTests": "npm run createAdmin",
"acceptanceTests": "NODE_ENV=test PHANTOMJS_EXECUTABLE=./node_modules/phantomjs/bin/phantomjs ./node_modules/casperjs/bin/casperjs --web-security=true --log-level=debug --verbose test spec/acceptance/user_journey.js spec/acceptance/admin_journey.js --url=http://localhost:3000 --email=$ACCEPTANCE_EMAIL --password=$ACCEPTANCE_PASSWORD | grep -v 'Unsafe JavaScript attempt to access frame' | grep -v -e '^$'",
"acceptanceTestsStaging": "NODE_ENV=test PHANTOMJS_EXECUTABLE=./node_modules/phantomjs/bin/phantomjs ./node_modules/casperjs/bin/casperjs --web-security=true --log-level=debug --verbose test spec/acceptance/user_journey.js spec/acceptance/admin_journey.js --url=https://project-m-staging.herokuapp.com --email=$ACCEPTANCE_EMAIL --password=$ACCEPTANCE_PASSWORD | grep -v 'Unsafe JavaScript attempt to access frame' | grep -v -e '^$'",
"bundle": "./node_modules/webpack/bin/webpack.js --config ./webpack.config.js --progress --colors --watch",
"createAdmin": "node ./scripts/createAdmin.js"
},
"dependencies": {
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babelify": "^7.2.0",
"bcryptjs": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.3.0.tgz",
"body-parser": "~1.13.2",
"config": "^1.19.0",
"connect-session-sequelize": "^3.0.0",
"cron": "^1.1.0",
"debug": "~2.2.0",
"ejs": "^2.3.4",
"express": "~4.13.1",
"express-sanitized": "^0.5.1",
"express-session": "^1.13.0",
"helmet": "^1.0.2",
"jquery": "^2.2.0",
"load-script": "^1.0.0",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"morgan": "~1.6.1",
"node-neat": "^1.7.2",
"node-sass-middleware": "0.8.0",
"node-uuid": "^1.4.7",
"nodemailer": "^2.0.0",
"nodemailer-sendmail-transport": "^1.0.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"paypal-ipn": "^3.0.0",
"pg": "^4.4.3",
"pg-hstore": "^2.3.2",
"q": "^1.4.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-modal": "^0.6.1",
"readline": "^1.3.0",
"sequelize": "^3.14.2",
"sequelize-cli": "^2.2.1",
"serve-favicon": "~2.3.0",
"stripe": "^4.1.0",
"underscore": "^1.8.3",
"validator": "^4.4.0",
"webpack": "^1.12.11",
"winston": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"casperjs": "^1.1.0-beta3",
"core-js": "^2.0.3",
"eslint": "^2.2.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.1.0",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"jasmine-reporters": "^2.1.1",
"jasmine-sinon": "^0.4.0",
"jshint": "^2.9.1",
"jsx-loader": "^0.13.2",
"karma": "^0.13.19",
"karma-cli": "^0.1.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"nodemailer": "^2.0.0",
"phantomjs": "^1.9.19",
"query-string": "^3.0.0",
"react-addons-test-utils": "^0.14.7",
"sinon": "^1.17.2",
"supertest": "^1.1.0",
"supertest-as-promised": "^2.0.2",
"watchify": "^3.7.0",
"webpack-dev-server": "^1.14.1"
}
}