-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.76 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "simply-react",
"version": "0.0.2",
"main": "index.js",
"author": "Dave Barthly <davebarthly@gmail.com>",
"license": "MIT",
"sideEffects": false,
"scripts": {
"start": "webpack-dev-server --hot --progress --color",
"build": "webpack --config ./webpack.prod.js --progress --display-error-details --profile --json > dist/stats.json",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"precommit": "lint-staged",
"analyze": "yarn build && webpack-bundle-analyzer dist/stats.json",
"setup:new": "rm -rf .git README.md && yarn install && git init && touch README.md && echo \"# New Project\n\nBe sure to update this file and package.json with your new project's name.\" > README.md"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss|sass)$": "identity-obj-proxy"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"@babel/preset-react": "^7.0.0-beta.44",
"autoprefixer": "^8.2.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.0-beta",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"css-hot-loader": "^1.3.9",
"css-loader": "^0.28.11",
"directory-named-webpack-plugin": "^4.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"imports-loader": "^0.8.0",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"node-sass": "^4.8.3",
"path": "^0.12.7",
"postcss-loader": "^2.1.3",
"prettier": "^1.11.1",
"react-hot-loader": "^4.0.1",
"react-test-renderer": "^16.3.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.44",
"emotion": "^9.1.1",
"normalize.css": "^8.0.0",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-emotion": "^9.1.1",
"react-helmet": "^5.2.0",
"react-transition-group": "^2.3.0"
}
}