-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
{
"name": "react-table",
"version": "1.0.0",
"description": "A react flexible table demo.",
"config": {
"buildDir": "./build",
"buildDirTests": "./build_tests",
"devHost": "localhost",
"devPort": 8000
},
"scripts": {
"build": "NODE_ENV=production npm run webpack",
"clean": "rimraf node_modules",
"env": "env",
"prebuild": "npm run clean",
"prestart": "npm install",
"start": "NODE_ENV=development node dev-server ./webpack/config",
"webpack": "webpack --colors --progress --config ./webpack/config"
},
"keywords": [
"React",
"JS"
],
"author": "Aristides Staffieri",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"css-loader": "0.23.1",
"node-sass": "^3.4.2",
"normalize.css": "3.0.3",
"ramda": "0.19.1",
"react": "0.14.7",
"react-dnd": "2.1.2",
"react-dnd-html5-backend": "2.1.2",
"react-dom": "0.14.7",
"react-redux": "4.4.0",
"redux": "3.3.1"
},
"devDependencies": {
"autoprefixer": "6.3.3",
"babel-core": "6.5.2",
"babel-loader": "6.2.3",
"babel-plugin-rewire": "0.1.22",
"babel-runtime": "6.5.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"opn": "4.0.0",
"postcss-loader": "0.8.1",
"react-hot-loader": "1.3.0",
"redux-devtools": "3.1.1",
"redux-devtools-dock-monitor": "^1.1.0",
"redux-devtools-log-monitor": "^1.0.4",
"rimraf": "2.5.2",
"sass-loader": "3.1.2",
"source-map-support": "0.4.0",
"style-loader": "0.13.0",
"template-html-loader": "0.0.3",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
}
}