This repository has been archived by the owner on Jun 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.57 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
{
"name": "meteor-react-ts-starter",
"private": true,
"scripts": {
"start": "meteor run",
"debug": "meteor run --inspect",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test:watch": "cross-env TEST_WATCH=1 meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"test:coverage": "cross-env TEST_BROWSER_DRIVER=chrome COVERAGE=1 COVERAGE_OUT_HTML=1 COVERAGE_OUT_LCOVONLY=1 COVERAGE_APP_FOLDER=%CD% meteor test --once --driver-package meteortesting:mocha",
"test:watch:coverage": "cross-env COVERAGE=1 COVERAGE_APP_FOLDER=%CD% TEST_WATCH=1 meteor test --driver-package meteortesting:mocha"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"meteor-node-stubs": "^0.4.1",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"simpl-schema": "^1.5.5"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/enzyme": "^3.1.18",
"@types/enzyme-adapter-react-16": "^1.0.4",
"@types/meteor": "^1.4.27",
"@types/mocha": "^5.2.6",
"@types/react": "^16.8.4",
"@types/react-dom": "^16.8.2",
"@types/simpl-schema": "^0.2.2",
"@types/sinon": "^7.0.6",
"chai": "^4.2.0",
"chromedriver": "^2.46.0",
"cross-env": "^5.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"selenium-webdriver": "^3.6.0",
"sinon": "^7.2.4",
"tslint": "^5.12.1",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3333"
}
}