-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "pathway-presenter",
"version": "0.1.0",
"private": true,
"homepage": "http://pathwaypresenter.jcbwndsr.com",
"dependencies": {
"@wikipathways/pvjs": "^3.7.3-beta",
"core-js": "^2.5.0",
"create-react-app": "^1.4.0",
"element-dataset": "^2.2.6",
"formsy-material-ui": "^0.6.0",
"formsy-react": "^0.19.5",
"gh-pages": "^1.0.0",
"lodash": "^4.17.4",
"material-ui": "^0.18.1",
"moize": "^2.3.3",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-aspect-ratio": "^1.0.11",
"react-aspectral": "^1.0.1",
"react-custom-scrollbars": "^4.1.2",
"react-dom": "^15.5.4",
"react-joyride": "^1.10.1",
"react-resize-detector": "^0.5.0",
"react-sortable-hoc": "^0.6.5",
"react-spinkit": "^3.0.0",
"react-tap-event-plugin": "^2.0.1",
"roboto-fontface": "^0.7.0",
"screenfull": "^3.2.2",
"spectacle": "^2.1.0",
"url-polyfill": "^1.0.7",
"uuid": "^3.0.1",
"webdriverio": "^4.8.0"
},
"devDependencies": {
"browserstack-local": "^1.3.0",
"chai": "^4.1.1",
"dotenv": "^4.0.0",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"flow-bin": "^0.47.0",
"husky": "^0.14.2",
"jest-localstorage-mock": "^1.2.0",
"lint-staged": "^4.0.0",
"prettier": "^1.5.2",
"react-scripts": "1.0.10",
"react-test-renderer": "^15.5.4",
"selenium-webdriver": "^3.5.0",
"wdio-mocha-framework": "^0.5.11"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"wdio": "wdio",
"start": "react-scripts start",
"build": "react-scripts build",
"pretest:e2e": "echo 'ensure the local server is running on port 3000!'",
"test:e2e": "wdio ./wdio.conf.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"precommit": "lint-staged"
}
}