-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.71 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
66
67
68
69
70
71
72
73
74
{
"name": "ride",
"version": "0.0.1",
"description": "React Editor",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-register tests",
"start": "electron index.js",
"install-package": "node install-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlad-ignatov/ride.git"
},
"keywords": [
"React",
"Editor",
"IDE",
"Flux",
"JSX"
],
"author": "Vladimir Ignatov",
"license": "MIT",
"bugs": {
"url": "https://github.com/vlad-ignatov/ride/issues"
},
"homepage": "https://github.com/vlad-ignatov/ride#readme",
"devDependencies": {
"babel": "^6.1.5",
"babel-core": "^6.1.4",
"babel-eslint": "^4.1.5",
"babel-loader": "^6.1.0",
"babel-plugin-syntax-jsx": "^6.1.4",
"babel-preset-es2015": "^6.1.4",
"babel-preset-react": "^6.1.4",
"babel-preset-stage-0": "^6.1.2",
"babel-register": "^6.3.13",
"chai": "*",
"electron-prebuilt": "^0.34.3",
"eslint": "^1.9.0",
"eslint-plugin-react": "^3.8.0",
"file-loader": "^0.8.4",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"mocha": "^2.3.4",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.4"
},
"dependencies": {
"alt": "^0.17.9",
"async": "^1.5.0",
"babel-runtime": "^6.1.4",
"bluebird": "^3.0.5",
"command-palette": "file:../ride-packages/command-palette",
"css-loader": "^0.22.0",
"jquery": "^2.1.4",
"json-loader": "^0.5.3",
"react": "^0.14.2",
"require-directory": "^2.1.1"
},
"ride": {
"packages": {
"command-palette": "^1.0.0"
}
},
"babel": {
"plugins": [],
"presets": [
"es2015"
],
"ignore": []
}
}