-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
55 lines (55 loc) · 2.41 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
{
"name": "meteor-vue-enterprise-starter",
"version": "0.1.0",
"scripts": {
"start": "meteor run --settings config/config.development.json",
"start:mimic-prod": "meteor run --settings config/config.production.json --production",
"start:bundle-visualizer": "meteor npm run start:mimic-prod -- --extra-packages bundle-visualizer",
"debug": "meteor debug --settings config/config.development.json",
"test:unit": "JEST_JUNIT_OUTPUT=tests/coverage/unit-tests/junit.xml jest --config tests/unit-test-setup/jest-config.js",
"test:unit-debug": "meteor node --inspect-brk ./node_modules/.bin/jest --runInBand -i --config tests/unit-test-setup/jest-config.json",
"test:e2e": "chimp --ddp=http://localhost:3000 --mocha --path=./tests/e2e/tests --browser=chrome",
"test:e2e-standalone": "meteor node ./tests/e2e-test-setup/run-e2e-tests.js 'meteor npm run start:mimic-prod' 'meteor npm run test:e2e'",
"lint": "semistandard --parser babel-eslint --env=jest --global server --global browser --verbose | snazzy",
"lint:fix": "semistandard --parser babel-eslint --env=jest --global server --global browser --verbose --fix | snazzy",
"precommit": "meteor npm run lint",
"prepush": "meteor npm run lint:fix && npm run test:unit"
},
"dependencies": {
"babel-runtime": "^6.20.0",
"bcrypt": "^1.0.2",
"meteor-node-stubs": "~0.2.8",
"moment": "^2.18.1",
"simpl-schema": "^0.3.1",
"timeout-as-promise": "^1.0.0",
"vue": "^2.3.3",
"vue-awesome": "^2.3.1",
"vue-media": "^1.1.1",
"vue-meteor-tracker": "ejfrancis/vue-meteor-tracker#import-tracker-checkin-build",
"vue-router": "^2.7.0",
"vuex": "^2.3.1",
"vuex-alt": "^0.0.7",
"vuex-router-sync": "^4.1.2"
},
"devDependencies": {
"avoriaz": "^3.5.0",
"babel-eslint": "^7.2.3",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"chimp": "^0.48.0",
"chromedriver": "^2.31.0",
"iview": "^2.0.0",
"jest": "^20.0.4",
"jest-junit": "^2.1.0",
"jest-vue-preprocessor": "^0.2.0",
"meteor-husky": "^0.14.6",
"semistandard": "^11.0.0",
"snazzy": "^7.0.0",
"vue-template-compiler": "^2.3.3",
"vue-template-es2015-compiler": "^1.5.2"
}
}