-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"private": true,
"name": "example-react",
"version": "1.0.0",
"description": "Fela example with React",
"scripts": {
"client": "NODE_ENV=development webpack-dev-server",
"start": "concurrently --kill-others \"npm run client\" \"babel-node server.js\""
},
"author": "Robin Frischmann <[email protected]>",
"license": "MIT",
"dependencies": {
"fela": "^4.2.6",
"fela-beautifier": "^4.2.6",
"fela-dom": "^4.3.5",
"fela-perf": "^4.2.6",
"fela-plugin-fallback-value": "^4.2.6",
"fela-plugin-logger": "^4.2.6",
"fela-plugin-lvha": "^4.2.6",
"fela-plugin-prefixer": "^4.2.6",
"fela-plugin-unit": "^4.2.6",
"fela-plugin-validator": "^4.2.6",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-fela": "^4.2.6",
"recompose": "^0.23.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.24.0",
"concurrently": "^3.4.0",
"express": "^4.14.0",
"express-http-proxy": "^1.0.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}