-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"name": "show-tracker-vanilla",
"version": "0.1.0",
"description": "Find and track your favorite TV shows.",
"main": "index.js",
"repository": "git@github.com:efuller/show-tracker-vanilla.git",
"author": "Eric Fuller <info@glassmoonmedia.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"test": "jest --colors --watchAll",
"test:coverage": "jest --coverage --collectCoverageFrom=src/**/*.{js,jsx}"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"hbs"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/src/index.js"
],
"transform": {
"\\.js$": "babel-jest",
"\\.hbs$": "<rootDir>/config/preprocessor.js"
}
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.8.2",
"file-loader": "^1.1.11",
"handlebars": "^4.0.11",
"handlebars-loader": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"jest": "^23.1.0",
"minireset.css": "^0.0.3",
"node-sass": "^4.9.0",
"prettier": "^1.16.4",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"axios": "^0.18.0"
}
}