forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "@packages/runner",
"version": "0.0.0",
"private": true,
"main": "src/index.js",
"scripts": {
"prebuild": "npm run check-deps-pre",
"build": "webpack",
"prebuild-prod": "npm run check-deps-pre",
"build-prod": "cross-env NODE_ENV=production npm run build",
"check-deps": "node ../../scripts/check-deps.js --verbose",
"check-deps-pre": "npm run check-deps -- --prescript",
"clean-deps": "rm -rf node_modules",
"postinstall": "echo '@packages/runner needs: npm run build'",
"pretest": "npm run check-deps-pre",
"test": "node ../../scripts/test-unit",
"test-watch": "npm run test -- --watch",
"prewatch": "npm run check-deps-pre",
"watch": "webpack --watch --progress"
},
"devDependencies": {
"@cypress/react-tooltip": "0.5.3",
"@fortawesome/fontawesome-free": "5.11.2",
"@types/enzyme": "3.10.4",
"@types/react": "16.9.17",
"bin-up": "1.2.2",
"bluebird": "3.5.0",
"chai": "4.2.0",
"chai-enzyme": "1.0.0-beta.1",
"classnames": "2.2.6",
"cross-env": "6.0.3",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.12.1",
"jsdom": "14.1.0",
"lodash": "4.17.15",
"mobx": "5.11.0",
"mobx-react": "5.4.4",
"mocha": "6.1.4",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-input-autosize": "2.2.1",
"sinon": "7.0.0",
"sinon-chai": "3.3.0",
"webpack": "4.35.3",
"webpack-cli": "3.3.2"
},
"files": [
"dist",
"lib"
]
}