forked from bummzack/sortablefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 920 Bytes
/
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
{
"name": "bummzack-sortablefile",
"version": "2.0.0",
"description": "",
"license": "BSD-3-Clause",
"author": "Bummzack",
"engines": {
"node": "^6.x"
},
"scripts": {
"build": "yarn && NODE_ENV=production webpack -p --bail --progress",
"dev": "NODE_ENV=development webpack --progress",
"watch": "yarn && NODE_ENV=development webpack --watch --progress",
"css": "yarn && WEBPACK_CHILD=css webpack -p --bail --progress",
"lock": "npm-shrinkwrap --dev",
"lint": "eslint client/src && sass-lint -v client/src"
},
"devDependencies": {
"@silverstripe/webpack-config": "^0.7.0"
},
"dependencies": {
"react": "15.3.1",
"react-dom": "15.3.1",
"react-redux": "^4.4.5",
"react-sortable-hoc": "^0.6.8",
"redux": "^3.3.1"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
}