-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "react-admin-cli",
"version": "0.0.1",
"preferGlobal": true,
"description": "Command Line Interface for react-admin Framework",
"main": "cli.js",
"bin": {
"ra": "cli.js"
},
"scripts": {
"start": "node cli.js",
"build": "webpack",
"build:prod": "webpack -p",
"watch": "webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aymendhaya/ra-cli.git"
},
"author": "Aymen Dhaya <aymendhaya@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aymendhaya/ra-cli/issues"
},
"homepage": "https://github.com/aymendhaya/ra-cli#readme",
"dependencies": {
"chalk": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-import": "^1.4.0",
"babel-plugin-istanbul": "^1.0.3",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.11.6",
"babel-standalone": "^6.21.1",
"enzyme": "^2.8.2",
"eslint": "^4.3.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"expect": "^1.20.2",
"polished": "^1.1.3",
"prettier": "^1.9.2",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.9.2"
}
}