-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
112 lines (112 loc) · 3.36 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"version": "1.0.0",
"name": "protostar-relay",
"repository": "oslabs-beta/protostar-relay",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "cross-env NODE_ENV=production node ./shells/browser/chrome/build",
"test": "cross-env TZ=\"UTC\" jest",
"install-app": "npm i --prefix ./relay-examples/todo/",
"start-test-app": "npm start --prefix ./relay-examples/todo/",
"watch:chrome:frontend": "cross-env NODE_ENV=development node ./shells/browser/chrome/watch",
"docker-test": "docker-compose up"
},
"jest": {
"verbose": true,
"testRegex": "((\\.|/*.)(spec))\\.js?$",
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__tests__/__mocks__/styleMock.js"
},
"timers": "fake",
"globalSetup": "<rootDir>/__tests__/global-setup.js"
},
"devEngines": {
"node": "10.x || 11.x"
},
"lint-staged": {
"{shells,src}/**/*.{js,json,css}": [
"prettier --write",
"git add"
],
"**/*.js": "eslint --max-warnings 0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-transform-flow-strip-types": "^7.7.4",
"@babel/plugin-transform-react-jsx-source": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-flow": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@reach/menu-button": "^0.5.4",
"@reach/tooltip": "^0.5.4",
"archiver": "^3.0.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-relay": "master",
"chance": "^1.0.18",
"child-process-promise": "^2.2.1",
"chrome-launch": "^1.1.4",
"classnames": "2.2.1",
"clipboard-js": "^0.3.6",
"cross-env": "^6.0.3",
"crx": "^5.0.0",
"css-loader": "^1.0.1",
"es6-symbol": "3.0.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"events": "^3.0.0",
"flow-bin": "^0.113.0",
"fs-extra": "^3.0.1",
"graphql": "^14.4.2",
"jest": "^24.9.0",
"lint-staged": "^7.0.5",
"local-storage-fallback": "^4.1.1",
"lodash.throttle": "^4.1.1",
"log-update": "^2.0.0",
"lru-cache": "^4.1.3",
"nullthrows": "^1.0.0",
"object-assign": "4.0.1",
"opener": "^1.5.1",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react": "^0.0.0-50b50c26f",
"react-dom": "^0.0.0-50b50c26f",
"react-relay": "master",
"react-test-renderer": "0.0.0-fec00a869",
"react-virtualized-auto-sizer": "^1.0.2",
"relay-compiler": "master",
"relay-config": "master",
"rimraf": "^2.6.3",
"sass-loader": "^10.0.2",
"scheduler": "^0.0.0-50b50c26f",
"style-loader": "^0.23.1",
"web-ext": "^3.0.0",
"webpack": "^4.41.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.10.0",
"yargs": "^14.2.0"
},
"dependencies": {
"bulma": "^0.9.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"node-sass": "^4.14.1",
"react-input-range": "^1.3.0",
"sass": "^1.26.10"
}
}