-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 960 Bytes
/
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
{
"name": "driving-to-ui-test-heaven",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"e2e": "npm run build && mocha dist/e2e/spec.js --timeout 20000",
"test": "mocha dist/app/**/spec.js -r jsdom-global/register --timeout 20000",
"start": "npm run build && ts-node app/server.ts",
"build": "tsc -p . && browserify dist/app/index.js > dist/bundle.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/chai": "^4.1.3",
"@types/express": "^4.11.1",
"@types/mocha": "^5.2.0",
"@types/puppeteer": "^1.3.2",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/selenium-webdriver": "^3.0.8",
"browserify": "^16.2.0",
"chai": "^4.1.2",
"express": "^4.16.3",
"jsdom": "^11.10.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.1.1",
"puppeteer": "^1.4.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"selenium-webdriver": "^4.0.0-alpha.1"
}
}