forked from Limenius/symfony-react-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.81 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
{
"name": "symfony-react-sandbox",
"version": "1.0.0",
"description": "Symfony React Sandbox",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack-serverside": "encore dev --config webpack.config.serverside.js --watch",
"webpack-dev": "encore dev-server",
"lint": "eslint client/js"
},
"keywords": [
"symfony",
"react",
"jsx",
"reactjs",
"server-side",
"rendering",
"isomorphic"
],
"author": {
"name": "Nacho Martín",
"email": "[email protected]",
"url": "http://nacho-martin.com/"
},
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"bootstrap-sass": "^3.3.7",
"classnames": "^2.2.5",
"jquery": "^3.2.1",
"js-yaml": "^3.10.0",
"jwt-decode": "^2.2.0",
"liform-react": "^0.6.9",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.2.0",
"react-on-rails": "^10.0.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"webpack": "^3.8.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@symfony/webpack-encore": "^0.16.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-runtime": "^6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"child_process": "^1.0.2",
"eslint": "4.x",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^7.4.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6"
}
}