-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
77 lines (77 loc) · 2.1 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
{
"name": "front-end-workshop",
"version": "0.1.0",
"description": "A very hands on workshop about essential tools and technologies to become a Front-End Developer.",
"main": "src/app.js",
"scripts": {
"start": "parcel src/index.html",
"prebuild": "rimraf dist",
"build": "parcel build src/index.html",
"lint": "yarn eslint src --ext .js,.jsx",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "test --coverage",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ezavile/front-end-workshop.git"
},
"author": "Edgar Zavala <ezavile@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ezavile/front-end-workshop/issues"
},
"homepage": "https://github.com/ezavile/front-end-workshop#readme",
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"eslint": "5.9.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-react": "7.11.1",
"husky": "1.1.4",
"lint-staged": "8.0.4",
"parcel-bundler": "1.10.3",
"prettier": "1.15.2",
"rimraf": "2.6.2",
"sass": "1.14.2"
},
"dependencies": {
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"enzyme-to-json": "3.3.4",
"evil-icons": "1.10.1",
"identity-obj-proxy": "3.0.0",
"jest": "23.6.0",
"prop-types": "15.6.2",
"react": "16.6.3",
"react-dom": "16.6.3",
"reset-css": "4.0.1"
},
"jest": {
"setupFiles": [
"./src/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
".+\\.(scss)$": "identity-obj-proxy"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"yarn eslint --fix",
"yarn jest --bail --findRelatedTests",
"git add"
]
}
}