-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
86 lines (86 loc) · 2.9 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "browser-tests",
"private": true,
"version": "0.2.0",
"description": "Example app for cross-browser testing",
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"bla": "fusion bla",
"profile": "fusion profile",
"sizes": "npm run build -- --production && fusion sizes",
"dev": "fusion dev",
"build": "fusion build",
"start": "fusion start",
"download-selenium": "node download-selenium.js",
"test": "yarn run test-chrome",
"test-chrome": "docker-compose down && docker-compose run browser-test-chrome",
"test-firefox": "docker-compose down && docker-compose run browser-test-firefox",
"test-verification": "docker-compose down && docker-compose -f docker-compose.verify.yml run browser-test-chrome-verify",
"test-remote": "./test-remotely.sh",
"cover": "fusion test --cover",
"source-map-explorer": "fusion source-map-explorer",
"check": "fusion check"
},
"dependencies": {
"fast-async": "^6.3.8",
"fusion-cli": "1.13.1",
"fusion-core": "^1.10.1",
"fusion-plugin-browser-performance-emitter": "^1.8.0",
"fusion-plugin-csrf-protection": "^2.0.0",
"fusion-plugin-error-handling": "^1.0.7",
"fusion-plugin-font-loader-react": "^1.1.1",
"fusion-plugin-i18n-react": "^1.2.2-0",
"fusion-plugin-jwt": "^1.0.7",
"fusion-plugin-node-performance-emitter": "^1.0.8",
"fusion-plugin-react-redux": "^1.1.0",
"fusion-plugin-react-router": "^1.4.2",
"fusion-plugin-redux-action-emitter-enhancer": "^2.0.1",
"fusion-plugin-rpc-redux-react": "2.0.3-0",
"fusion-plugin-styletron-react": "^2.5.4",
"fusion-plugin-universal-events": "^1.3.0",
"fusion-plugin-universal-events-react": "^1.0.4",
"fusion-plugin-universal-logger": "^1.0.5",
"fusion-react": "^1.3.5",
"fusion-tokens": "^1.1.1",
"jest-environment-jsdom": "^23.4.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"styletron-react": "^4.4.4",
"unfetch": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"enzyme": "^3.8.0",
"eslint": "^5.11.1",
"eslint-config-fusion": "^4.0.0",
"eslint-plugin-cup": "^2.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.1",
"flow-bin": "^0.89.0",
"nightmare": "^3.0.1",
"nightwatch": "^1.0.18",
"node-fetch": "^2.3.0",
"prettier": "1.15.3",
"react-test-renderer": "^16.7.0",
"request": "^2.88.0",
"selenium-download": "^2.0.15",
"tape": "^4.9.2"
},
"resolutions": {
"fusion-plugin-i18n": "1.1.5-0"
},
"engines": {
"node": ">= 8.9.0"
},
"license": "MIT"
}