forked from facebookarchive/fixed-data-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.89 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
{
"name": "fixed-data-table",
"version": "0.1.0",
"description": "A React table component designed to allow presenting thousands of rows of data.",
"main": "main.js",
"peerDependencies": {
"react": "0.12.x"
},
"devDependencies": {
"autoprefixer": "^5.0.0",
"bundle-loader": "^0.5.2",
"css-loader": "^0.9.1",
"esprima-fb": "^10001.1.0-dev-harmony-fb",
"extract-text-webpack-plugin": "^0.3.8",
"faker": "^2.1.2",
"file-loader": "^0.8.1",
"glob": "^4.3.5",
"html-loader": "^0.2.3",
"jsx-loader": "^0.12.2",
"less": "^2.2.0",
"less-loader": "^2.0.0",
"marked": "^0.3.2",
"node-jsx": "^0.12.4",
"postcss": "^4.0.2",
"postcss-custom-properties": "^3.0.0",
"react": "^0.12.2",
"react-tools": "^0.12.2",
"style-loader": "^0.8.3",
"url-loader": "^0.5.5",
"webpack": "^1.4.15",
"webpack-dev-server": "^1.7.0"
},
"scripts": {
"site-dev-server": "build_helpers/buildAPIDocs.sh && build_helpers/buildSiteIndexPages.sh && webpack-dev-server --config site/webpack.config.js --no-info --content-base __site__",
"site-build": "rm -rf ./__site__ && build_helpers/buildAPIDocs.sh && NODE_ENV=production webpack --config site/webpack.config.js && NODE_ENV=production build_helpers/buildSiteIndexPages.sh",
"build-dist": "NODE_ENV=production webpack && NODE_ENV=production COMPRESS=1 webpack",
"build-npm": "build_helpers/buildNPMInternals.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/fixed-data-table.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/facebook/fixed-data-table/issues"
},
"homepage": "http://facebook.github.io/fixed-data-table",
"tags": [
"react",
"table"
],
"keywords": [
"react",
"react-component",
"table",
"data-table",
"fixed-table"
]
}