-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.1 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.1 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-redux-bootcamp",
"version": "0.0.1",
"description": "A React UI components boilerplate",
"main": "lib/components/index.js",
"scripts": {
"build": "concurrently 'yarn build:app' 'yarn build:lib' 'yarn copy:sass' 'yarn copy:fonts'",
"build:app": "cross-env NODE_ENV=production babel-node tools/bundle",
"build:dev": "yarn clean:build && cross-env NODE_ENV=development webpack --config ./webpack.config.js --progress --hide-modules --watch src",
"build:lib": "cross-env NODE_ENV=production BABEL_ENV=server babel src -d lib --ignore=**/*.stories.jsx,**/*.test.jsx",
"clean": "yarn clean:build && yarn clean:packages",
"clean:build": "concurrently 'rimraf build' 'rimraf lib/*'",
"clean:packages": "rimraf node_modules",
"copy:fonts": "cpy **/*.{eot,svg,otf,ttf,woff,woff2} ../lib --cwd=src --parents",
"copy:sass": "cpy **/*.scss ../lib --cwd=src --parents",
"dev": "yarn build:dev",
"flow": "flow",
"flow:dep": "flow-typed install",
"lint": "eslint src",
"postinstall": "[ \"$NODE_ENV\" == production ] && exit 0; yarn flow:dep",
"prebuild": "yarn clean:build",
"prepublish": "yarn build",
"pretest": "yarn lint",
"storybook": "start-storybook -p 4013 -c .storybook",
"test": "jest --config jest/test.config.json",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"validate": "npm ls"
},
"pre-commit": [
"flow",
"test"
],
"devDependencies": {
"@storybook/addon-a11y": "^3.4.3",
"@storybook/addon-actions": "^3.4.3",
"@storybook/addon-knobs": "^3.4.3",
"@storybook/addon-links": "^3.4.3",
"@storybook/addon-viewport": "^3.4.3",
"@storybook/addons": "^3.4.3",
"@storybook/react": "^3.4.3",
"babel-cli": "6.4.5",
"babel-core": "^6.26.3",
"babel-eslint": "6.1.2",
"babel-jest": "17.0.2",
"babel-loader": "^7.1.4",
"babel-plugin-react-css-modules": "^3.4.0",
"babel-plugin-react-transform": "2.0.0",
"babel-plugin-transform-class-properties": "6.4.0",
"babel-plugin-transform-es2015-spread": "6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "6.20.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "6.24.1",
"babel-runtime": "6.23.0",
"classnames": "^2.2.5",
"concurrently": "^3.5.1",
"cpy-cli": "^1.0.1",
"cross-env": "4.0.0",
"css-loader": "^0.28.11",
"css-modules-flow-types-loader": "^1.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15.4": "^1.0.5",
"eslint": "3.12.0",
"eslint-config-airbnb": "13.0.0",
"eslint-loader": "1.6.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.8.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "^1.1.11",
"flow-bin": "^0.71.0",
"flow-typed": "^2.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "17.0.3",
"mustache": "^2.3.0",
"node-noop": "^1.0.0",
"node-sass": "^4.9.0",
"nodemon": "1.11.0",
"postcss": "^6.0.22",
"postcss-loader": "^2.1.5",
"precommit-hook-eslint": "3.0.0",
"ramda": "^0.25.0",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "15.4.1",
"react-css-modules": "^4.7.2",
"react-transform-catch-errors": "1.0.1",
"resolve-url-loader": "^2.3.0",
"rimraf": "2.5.4",
"sass-loader": "^7.0.1",
"scaffold-generator": "^2.0.3",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "3.10.0",
"webpack-bundle-analyzer": "^2.11.2",
"webpack-cli": "^2.1.2"
},
"dependencies": {
"babel-polyfill": "6.20.0",
"dom-helpers": "2.4.0",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"engines": {
"node": ">=8.9.4",
"yarn": ">=1.6.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:jabdul/react-ui-boilerplate.git#master"
},
"author": "npm@craftturf.com",
"license": "SEE LICENSE IN <LICENSE>"
}