-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "elekid",
"version": "0.2.4-rc",
"description": "Electron Server Side Render",
"main": "index.js",
"scripts": {
"test-unit": "mocha",
"test": "npm run lint && npm run test-unit",
"lint": "standard",
"lint-fix": "standard --fix"
},
"keywords": [
"react",
"electron",
"flow",
"server",
"render",
"ssr",
"vue",
"inferno"
],
"author": "Raphael Amorim <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-core": "6.22.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6",
"babel-plugin-transform-object-rest-spread": "^6",
"babel-plugin-transform-require-ignore": "^0.1.0",
"babel-preset-env": "^0.0.9",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6",
"is-directory": "^0.3.1",
"react": "15.4.2",
"react-dom": "15.4.2",
"require-from-string": "1.2.1"
},
"devDependencies": {
"mocha": "2.2.1",
"standard": "8.6.0"
},
"standard": {
"ignore": [
"test/**"
]
}
}