-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.6 KB
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
{
"name": "minesweeper",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "grgrssll@gmail.com",
"dependencies": {
"@emotion/core": "^10.0.27",
"@emotion/styled": "^10.0.27",
"prop-types": "^15.7.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-scripts": "2.0.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"jest": "jest",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.js src/**/*.jsx"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/grgrssll-dev/react-minesweeper.git"
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
},
"transformIgnorePatterns": [
"!node_modules/react-runtime"
]
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/env": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.9.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"husky": "^4.0.10",
"jest": "^24.9.0",
"lint-staged": "^10.0.0",
"prettier": "^1.19.1"
}
}