-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
60 lines (60 loc) · 1.87 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
{
"name": "ssr",
"version": "2.6.0",
"description": "Server side rendering with Express, react-router-4 & redux for Meteor.",
"main": "ssr.js",
"scripts": {
"test": "jest",
"test.watch": "jest --watch",
"lint": "./scripts/eslint.sh; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssr-server/ssr.git"
},
"author": "Pierre-Eric Marchandet <[email protected]> (http://pem-musing.blogspot.fr/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssr-server/ssr/issues"
},
"homepage": "https://github.com/ssr-server/ssr#readme",
"devDependencies": {
"actual": "^0.4.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.5",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-meteor": "^6.26.0",
"babel-runtime": "^6.23.0",
"benchmark": "^2.1.4",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^7.0.1",
"immutable": "^3.8.1",
"jest": "^20.0.1",
"microtime": "^2.1.3",
"moment": "^2.18.1",
"react": "^15.5.4",
"prop-types": "^15.5.10",
"receptacle": "^1.3.0",
"redux": "^3.6.0",
"serialize-javascript": "^1.3.0",
"useragent": "^2.1.13"
},
"jest": {
"verbose": true,
"setupTestFrameworkScriptFile": "./jest/config.js"
}
}