-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "react-extendable-grid",
"version": "0.1.0",
"description": "A simple react grid component that is highly extendable",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ra0o0f/react-extendable-grid.git"
},
"keywords": [
"react",
"component",
"grid",
"typescript"
],
"author": {
"name": "raoof hojat"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ra0o0f/react-extendable-grid/issues"
},
"homepage": "https://github.com/ra0o0f/react-extendable-grid",
"files": [
"dist/",
"lib/"
],
"scripts": {
"webpack": "rimraf dist/* && webpack --config ./build/webpack.config.prod.js",
"tsc": "rimraf lib/* && gulp ts --gulpfile ./build/gulpfile.js",
"themes": "gulp themes --gulpfile ./build/gulpfile.js",
"build": "npm run tsc && npm run webpack && npm run themes",
"example": "webpack --config ./build/webpack.config.dev.js"
},
"dependencies": {
"quicksorter": "^1.0.1",
"react": "^15.0.2",
"react-dom": "^15.0.2"
},
"devDependencies": {
"gulp-ignore": "^2.0.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"gulp": "^3.9.1",
"gulp-cssmin": "^0.1.7",
"gulp-less": "^3.1.0",
"gulp-rename": "^1.2.2",
"gulp-typescript": "^2.13.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"rimraf": "^2.5.2",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
}
}