-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.74 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": "admin-lte-react",
"version": "0.0.5",
"description": "AdminLTE react components",
"private": true,
"scripts": {
"build": "npm run build:babel && npm run build:copy && npm run build:move",
"build:babel": "babel src/lib/ --out-dir build",
"build:copy": "babel-node ./scripts/copy-files.js",
"build:move": "babel-node ./scripts/move-files.js",
"clean": "rimraf build",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"publish": "node ./scripts/publish.sh",
"start": "node server.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/ucokfm/admin-lte-react.git"
},
"keywords": [
"adminlte",
"react"
],
"author": "Ucok Freddy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ucokfm/admin-lte-react/issues"
},
"homepage": "https://github.com/ucokfm/admin-lte-react",
"devDependencies": {
"admin-lte": "2.3.5",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"fs-extra": "^0.30.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-hot-loader": "^3.0.0-beta.1",
"react-router": "^2.4.1",
"rimraf": "^2.5.2",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"admin-lte": "2.3.5",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"dependencies": {
"classnames": "^2.2.5",
"moment": "^2.13.0"
}
}