This repository was archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.77 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.77 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
{
"name": "create-react-component",
"version": "1.0.1",
"description": "A simple react component boilerplate using webpack 2",
"main": "dist/index.js",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-react-app": "^0.6.2",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"style-loader": "^0.16.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2",
"prop-types": "^15.5.8"
},
"scripts": {
"server": "./node_modules/.bin/webpack-dev-server --hot --inline",
"watch": "./node_modules/.bin/webpack --watch --config=webpack.build.config.js",
"build": "./node_modules/.bin/webpack -p --config=webpack.build.config.js",
"pre-deploy": "./node_modules/.bin/webpack --config=webpack.config.js",
"deploy": "npm run pre-deploy && git subtree push --prefix demo origin gh-pages",
"start": "npm run build && npm run server",
"test": "jest",
"test-coverage": "yarn run jest -- --coverage"
},
"jest": {
"unmockedModulePathPatterns": [
"/node_modules/react",
"/node_modules/react-dom",
"/node_modules/react-addons-test-utils"
],
"moduleNameMapper": {
"^.+\\.(css)$": "<rootDir>/preprocessor.js"
}
},
"peerDependencies": {
"react-dom": "^15.4.2"
},
"repository": "https://github.com/gokulkrishh/create-react-component",
"author": "Gokulakrishnan Kalaikovan",
"license": "MIT"
}