-
Notifications
You must be signed in to change notification settings - Fork 206
/
package.json
93 lines (93 loc) · 2.81 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react-flexbox-grid",
"description": "A set of React components implementing flexboxgrid with the power of CSS Modules",
"homepage": "https://github.com/roylee0704/react-flexbox-grid",
"version": "2.1.2",
"main": "lib/index.js",
"author": {
"email": "[email protected]",
"name": "Roy Lee"
},
"repository": {
"type": "git",
"url": "git://github.com/roylee0704/react-flexbox-grid.git"
},
"bugs": {
"url": "https://github.com/roylee0704/react-flexbox-grid/issues"
},
"keywords": [
"css modules",
"flexbox",
"grid",
"react",
"react-component"
],
"dependencies": {
"flexboxgrid2": "^7.2.0",
"prop-types": "^15.5.8"
},
"devDependencies": {
"@types/react": "*",
"autoprefixer": "^6.0.3",
"babel-cli": "^6.4.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.4",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cpx": "^1.2.1",
"cross-env": "^1.0.4",
"css-loader": "^0.21.0",
"eslint": "^1.10.1",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "^3.10.0",
"expect": "^1.13.0",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"isparta": "^4.0.0",
"jsdom": "^7.0.2",
"karma": "^1.6.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.3",
"mocha": "^3.1.2",
"node-sass": "^3.4.2",
"phantomjs-prebuilt": "^2.1.14",
"postcss-loader": "^0.7.0",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-hot-loader": "^1.3.0",
"redbox-react": "^1.1.1",
"rimraf": "^2.4.4",
"sass-loader": "^3.1.2",
"style-loader": "^0.12.3",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.4.1",
"webpack-merge": "^4.1.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production npm run compile",
"clean": "rimraf ./lib",
"compile": "npm run compile:lib && npm run compile:dist",
"compile:dist": "rm -rf dist && cross-env ./node_modules/.bin/webpack",
"compile:lib": "rm -rf lib && ./node_modules/.bin/babel -d ./lib ./src",
"lint": "eslint src test",
"patch": "bumped release patch",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"release": "bumped release",
"start": "cross-env NODE_ENV=development UV_THREADPOOL_SIZE=100 node ./server",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "cross-env NODE_ENV=test karma start --no-single-run"
},
"license": "MIT",
"peerDependencies": {
"react": "^0.14.3 || ^15.5.4 || ^16.0.0 || ^17.0.0"
},
"types": "react-flexbox-grid.d.ts"
}