-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.88 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
{
"name": "folder-ui",
"version": "4.3.2",
"description": "ui components for a folder editor",
"main": "index.js",
"scripts": {
"clean": "mkdir -p example/dist && rm -rf example/dist/*",
"indexpage": "cp example/*.{html,css} example/dist",
"assets": "npm run indexpage",
"watch": "WEBPACK_ARGS=--watch npm run webpack",
"prewebpack": "npm run clean && npm run assets",
"webpack": "webpack $WEBPACK_ARGS",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"build": "NODE_ENV=development npm run webpack",
"release": "NODE_ENV=production npm run webpack",
"pretest": "npm run compile",
"test": "mocha --compilers js:babel-core/register --recursive --require ./test/setup.js test",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/binocarlos/folder-ui.git"
},
"keywords": [
"tree",
"redux",
"material"
],
"author": "Kai Davenport",
"license": "MIT",
"bugs": {
"url": "https://github.com/binocarlos/folder-ui/issues"
},
"homepage": "https://github.com/binocarlos/folder-ui",
"dependencies": {
"async": "^2.1.2",
"biro": "3.2.1",
"biro-material-ui": "^2.1.2",
"hat": "^0.0.3",
"kettle-ui": "^3.5.0",
"local-storage": "^1.4.2",
"material-ui": "^0.15.4",
"pluralise": "^1.0.0",
"react": "^15.3.1",
"superagent": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"chokidar": "^1.6.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"webpack": "^1.12.12"
}
}