-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 1.97 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "HackathonSampleReactApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "./node_modules/.bin/babel-node --presets react,es2015 server.js",
"dev": "webpack -d --watch",
"devstart": "nodemon --exec babel-node --presets react,es2015 server.js",
"build": "webpack -p",
"test": "./node_modules/.bin/jest",
"eslint": "eslint --ignore-path .eslintignore ."
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"cfenv": "1.0.x",
"enzyme": "^2.6.0",
"express": "4.13.x",
"express-graphql": "^0.6.1",
"graphql": "^0.8.2",
"jest": "^17.0.3",
"jest-cli": "^17.0.3",
"json-loader": "^0.5.4",
"lokka": "^1.7.0",
"lokka-transport-http": "^1.6.1",
"react": "^15.2.1",
"react-addons-test-utils": "^15.4.0",
"react-dom": "^15.2.1",
"webpack": "^1.12.12"
},
"repository": {},
"engines": {
"node": "4.x",
"npm": "3.x"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"react",
"react-dom",
"react-addons-test-utils",
"fbjs",
"enzyme",
"cheerio",
"htmlparser2",
"underscore",
"lodash",
"domhandler",
"object.assign",
"define-properties",
"function-bind",
"object-keys"
]
},
"devDependencies": {
"babel-eslint": "4.1.6",
"babel-register": "^6.18.0",
"escope": "^3.3.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "2.1.1",
"eslint-plugin-react": "3.12.0",
"webpack": "^1.12.12"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"globals": {
"__DEV__": true
},
"env": {
"browser": true
},
"rules": {
"no-confusing-arrow": 0,
"react/jsx-quotes": 0,
"jsx-quotes": [
2,
"prefer-double"
]
}
}
}