-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.38 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": "bblfsh-web",
"homepage": ".",
"version": "0.1.0",
"private": true,
"dependencies": {
"codemirror": "^5.32.0",
"es6-promise": "^4.1.0",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"normalize.css": "^7.0.0",
"react": "^16.6.0",
"react-codemirror2": "^5.0.1",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.6.0",
"react-redux": "^5.1.0",
"react-split-pane": "^0.1.63",
"react-tooltip": "^3.10.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"uast-viewer": "^0.4.0"
},
"devDependencies": {
"@craco/craco": "^5.0.2",
"craco-less": "^1.7.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-jest": "^22.5.1",
"jest-fetch-mock": "^1.1.1",
"prettier": "1.8.2",
"react-scripts": "^3.0.0",
"react-test-renderer": "^16.4.1",
"redux-mock-store": "^1.3.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"lint": "eslint 'src/**/*.js' && prettier -l 'src/**/*.js'",
"fix-lint-errors": "eslint --fix 'src/**/*.js'; prettier --write 'src/**/*.js'"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}