-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
98 lines (98 loc) · 3.58 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"scripts": {
"lint": "eslint '**/*.js'",
"test:jest-enzyme": "jest --config tests/jest-enzyme/jest.config.js",
"test:jest-enzyme:watch": "yarn test:jest-enzyme --watch",
"test:jest-rtl": "jest --config tests/jest-rtl/jest.config.js",
"test:jest-rtl:watch": "yarn test:jest-rtl --watch",
"test:jest-interactor": "jest --config tests/jest-interactor/jest.config.js",
"test:jest-interactor:watch": "yarn test:jest-interactor --watch",
"test:ui": "yarn jest --config ui/jest.config.js",
"test:ui:watch": "yarn test:ui --watch",
"test": "yarn test:jest-enzyme && yarn test:jest-rtl && yarn test:jest-interactor && yarn test:ui",
"test:ci": "yarn test:jest-enzyme --maxWorkers=2 && yarn test:jest-rtl --maxWorkers=2 && yarn test:jest-interactor --maxWorkers=2 && yarn test:ui --maxWorkers=2",
"cosmos": "cosmos-classic --config ui/cosmos.config",
"dev": "yarn babel-node ui/server/start-dev.js",
"build": "next build ui && next export ui -o .export",
"upload": "cd .export && now --name rte --public && cd -"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@bigtest/interactor": "^0.9.1",
"@bigtest/react": "^0.1.2",
"@mdx-js/loader": "^0.15.5",
"@mdx-js/mdx": "^0.15.5",
"@react-mock/fetch": "^0.3.0",
"@react-mock/localstorage": "^0.1.2",
"@react-mock/state": "^0.1.7",
"@react-mock/xhr": "^0.2.0",
"@skidding/async-retry": "^1.0.2",
"async-until": "^1.2.2",
"axios": "^0.18.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-inline-import-data-uri": "^1.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-styled-components": "^1.8.0",
"css-loader": "^1.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.7.0",
"eslint-import-resolver-babel-module": "^5.0.0-beta.1",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.25.1",
"eslint-plugin-react": "^7.11.1",
"express": "^4.16.4",
"flow-bin": "^0.93.0",
"flow-typed": "^2.5.1",
"glob": "^7.1.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"jest-dom": "^2.1.0",
"prettier": "^1.16.4",
"raw-loader": "^0.5.1",
"react-cosmos-classic": "^4.8.3",
"react-cosmos-fetch-proxy": "^4.8.2",
"react-cosmos-localstorage-proxy": "^4.8.2",
"react-cosmos-redux-proxy": "^4.8.2",
"react-cosmos-router-proxy": "^4.8.2",
"react-cosmos-test": "^4.8.2",
"react-cosmos-xhr-proxy": "^4.8.2",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^16.5.2",
"react-testing-library": "^5.2.0",
"redux": "^4.0.1",
"remark-parse": "^5.0.0",
"style-loader": "^0.23.1",
"traverse": "^0.6.6",
"unified": "^7.0.0",
"webpack": "^4.21.0"
},
"dependencies": {
"clipboard": "^2.0.4",
"delay": "^4.1.0",
"fuzzaldrin-plus": "^0.6.0",
"next": "^7.0.2",
"parse-numeric-range": "^0.0.2",
"prismjs": "^1.15.0",
"query-string": "^6.2.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-show": "2.0.4",
"styled-components": "^4.1.3"
}
}