-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.07 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
{
"name": "mtg-whats-that-do",
"version": "1.0.0",
"description": "Look up many cards in one view.",
"main": "index.js",
"scripts": {
"dev": "node dev-server",
"lint": "eslint '{components,functions,pages,utils}/**/*.{js,jsx}'",
"unit": "jest",
"unit:watch": "npm run unit -- --watchAll",
"test": "npm run lint && npm run unit",
"precommit": "lint-staged",
"build": "next build && next export",
"deploy": "npm run build && firebase deploy --except functions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahaurw01/mtg-whats-that-do.git"
},
"keywords": [
"mtg"
],
"author": "Aaron Haurwitz <aaron.haurwitz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahaurw01/mtg-whats-that-do/issues"
},
"homepage": "https://github.com/ahaurw01/mtg-whats-that-do#readme",
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/preset-env": "7.7.7",
"@zeit/next-css": "1.0.1",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-react": "7.17.0",
"fetch-mock": "8.3.1",
"firebase-tools": "7.11.0",
"husky": "3.1.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-localstorage-mock": "2.4.0",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"prop-types": "15.7.2",
"webpack": "4.41.5"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"dependencies": {
"classnames": "2.2.6",
"next": "9.1.6",
"next-offline": "4.0.6",
"react": "16.12.0",
"react-dom": "16.12.0",
"screenfull": "5.0.0",
"semantic-ui-react": "0.88.2"
},
"optionalDependencies": {
"fsevents": "1.2.9"
},
"babel": {
"presets": [
"@babel/env",
"next/babel"
]
},
"jest": {
"setupFiles": [
"<rootDir>/jest-setup.js"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
}
}