forked from mantrajs/meteor-mantra-kickstarter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
112 lines (112 loc) · 4.63 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
{
"name": "meteor-mantra-kickstarter",
"version": "0.4.0",
"license": "MIT",
"repository": "https://github.com/warehouseman/meteor-mantra-kickstarter",
"scripts": {
"lint": "npm run lint_pkgs && npm run lint_main",
"lint_main": "eslint . --ext .js --ext .jsx",
"lint_pkgs": "./.pkgs/lint_each_package.sh",
"lintfix": "npm run lint -- --fix",
"testclient": "mocha .scripts/mocha_boot.js client/**/tests/**/*.js --compilers js:babel-core/register",
"testimports": "mocha .scripts/mocha_boot.js imports/**/tests/**/*.js --compilers js:babel-core/register",
"testbooks": "mocha .scripts/mocha_boot.js imports/iriblu_book/tests/*.js --compilers js:babel-core/register",
"testonly": "npm run testclient && npm run testimports",
"test": "npm run lint && npm run testonly",
"test-watch-client": "npm run testclient -- --watch --watch-extensions js,jsx",
"test-watch-imports": "npm run testimports -- --watch --watch-extensions js,jsx",
"run_acceptance": "./.scripts/startAcceptanceTest.sh",
"acceptance": "chimp .e2e_tests/chimp-config.js --ddp=http://localhost:3000 --path=.e2e_tests",
"e2e": "chimp .e2e_tests/chimp-config.js --ddp=http://localhost:3000 --watch --path=.e2e_tests",
"version-check": "ncu",
"qtst": "mocha .scripts/mocha_boot.js imports/iriblu_deliveryitem/**/tests/**/*.js --compilers js:babel-core/register",
"qtw": "npm run qtst -- --watch --watch-extensions js,jsx",
"dsstore": "find . -name '*.DS_Store' -type f -delete",
"knex_prod": "export T=production; npm run knex_make && npm run knex_seed;",
"knex_cont": "export T=continuousIntegration; npm run knex_make && npm run knex_seed;",
"knex_roll": "cd server/api/.knex && knex migrate:rollback --env ${T};",
"knex_make": "cd server/api/.knex && knex migrate:latest --env ${T};",
"knex_seed": "cd server/api/.knex && knex seed:run --env ${T};",
"envchk": ".scripts/preFlightCheck.sh",
"clean_all": "./clean_all.sh",
"install_all": "npm run envchk && . ~/.userVars.sh && ./install_all.sh;",
"build_all": "meteor npm run envchk && . ~/.userVars.sh && ./build_all.sh;",
"sanity_check": "./.scripts/startInDevMode.sh",
"precommit": ".scripts/dropLocalPackages.sh && export CI='true' && meteor npm test",
"run_dev": "meteor npm run envchk && . ~/.userVars.sh && ./.scripts/startInDevMode.sh",
"run_prod": "meteor npm run envchk && . ~/.userVars.sh && ./.scripts/startInProdMode.sh",
"fullp": "npm run clean_all && npm run install_all && meteor npm run build_all && meteor npm run run_prod",
"fulld": "npm run clean_all && npm run install_all && meteor npm run build_all && meteor npm run run_dev"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "8.0.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"chai": "4.1.1",
"chai-as-promised": "^7.1.1",
"deep-eql": "^3.0.1",
"enzyme": "^2.9.1",
"eslint": "^4.7.2",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.4.0",
"expect": "^21.1.0",
"husky": "^0.14.3",
"jsdom": "^11.2.0",
"mocha": "^3.5.3",
"react-addons-test-utils": "^15.6.0",
"request": "^2.82.0",
"sequelize-mock": "^0.9.1",
"sinon": "^4.0.0"
},
"dependencies": {
"apollo-client": "^1.9.3",
"babel-runtime": "^6.26.0",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"classnames": "^2.2.5",
"domready": "^1.0.8",
"express": "^4.15.4",
"formsy-react": "^0.19.5",
"formsy-react-components": "^0.10.1",
"graphql": "^0.11.3",
"graphql-iso-date": "^3.3.0",
"graphql-server-express": "^1.1.2",
"graphql-tag": "^2.4.2",
"graphql-tools": "^1.2.3",
"knex": "^0.13.0",
"lodash": "^4.17.4",
"logatim": "^0.9.0",
"loggly": "^1.1.1",
"mantra-core": "^1.7.0",
"meteor-node-stubs": "^0.2.11",
"mkdirp": "^0.5.1",
"mysql2": "^1.4.2",
"nodemailer": "^4.1.0",
"nodemailer-mailgun-transport": "^1.3.5",
"pg": "^7.3.0",
"pg-hstore": "^2.3.2",
"pg-native": "^2.2.0",
"react": "^15.6.1",
"react-apollo": "^1.4.15",
"react-dom": "^15.6.1",
"react-mounter": "^1.2.0",
"react-select": "^1.0.0-rc.10",
"react-simple-di": "^1.2.0",
"react-tagsinput": "^3.18.0",
"request-promise": "^4.2.2",
"sequelize": "^4.10.3",
"simpl-schema": "^0.3.2",
"sqlite3": "^3.1.8",
"subscriptions-transport-ws": "^0.9.0",
"tcomb-form": "^0.9.17",
"testdouble": "^3.2.6",
"touch": "^3.1.0",
"uniforms": "^1.20.4",
"uniforms-bootstrap3": "^1.20.4",
"winston": "^2.3.1",
"winston-loggly-bulk": "^2.0.1"
},
"private": true
}