This repository was archived by the owner on Dec 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.75 KB
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
{
"name": "react-drupal-relaxed",
"version": "1.0.0",
"description": "Shared React components and libraries, for replicating and displaying data from a Drupal 8 site, using RELAXed.",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "npm run build:commonjs && npm run build:es",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"drupal"
],
"repository": {
"type": "git",
"url": "https://github.com/relaxedws/react-drupal-relaxed.git"
},
"author": "Mikkel Hoegh <mikkel@hoegh.org>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-check-es2015-constants": "^6.7.2",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"cross-env": "^1.0.7",
"eslint": "~2.2.0",
"eslint-config-rackt": "^1.1.1",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.3.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-flow-vars": "^0.2.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^4.2.1",
"eslint-plugin-standard": "^1.3.2",
"rimraf": "^2.5.2",
"webpack": "^1.12.14"
},
"dependencies": {
"react": "^0.14.7",
"redux": "^3.0.0",
"react-router": "^2.0.0",
"redux-actions": "^0.9.1",
"redux-saga": "^0.6.1",
"redux-thunk": "^1.0.0"
}
}