-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.64 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-no-compromise-boilerplate",
"version": "0.1.0",
"description": "a powerful boilerplate for apps that need full flexibility and maintainability",
"main": "src/app.js",
"scripts": {
"test": "./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brigand/react-no-compromise-boilerplate.git"
},
"keywords": [
"react"
],
"author": "Frankie Bagnardi <f.bagnardi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brigand/react-no-compromise-boilerplate/issues"
},
"homepage": "https://github.com/brigand/react-no-compromise-boilerplate#readme",
"dependencies": {
"babel-plugin-add-module-exports": "^0.1.2",
"bluebird": "^2.10.0",
"classnames": "^2.1.3",
"history": "^1.8.5",
"lodash": "^3.10.1",
"marked": "^0.3.5",
"react": "^0.14.0",
"react-addons-update": "^0.14.0",
"react-dom": "^0.14.0",
"react-motion": "^0.3.1",
"react-router": "^1.0.0-rc3",
"reflux-core": "^0.2.1",
"strip-indent": "^1.0.1",
"superagent": "^1.4.0",
"superagent-promise": "^1.0.3"
},
"devDependencies": {
"axios": "^0.5.4",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-jest": "^9.0.3",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"bluebird": "^2.10.0",
"chai": "^3.2.0",
"css-loader": "^0.18.0",
"defaults": "^1.0.2",
"electron-prebuilt": "^0.37.4",
"enzyme": "^2.1.0",
"express": "^4.13.3",
"inquirer": "^0.9.0",
"jest-cli": "^0.9.2",
"jsx-equals": "^0.3.3",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"mocha": "^2.3.2",
"null-loader": "^0.1.1",
"react-addons-test-utils": "^0.14.0",
"react-hot-loader": "^1.3.0",
"readdir-recursive-promise": "0.0.1",
"style-loader": "^0.12.3",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.10.1",
"yargs": "^3.24.0"
},
"jest": {
"scriptPreprocessor": "<rootDir>/scripts/test-util/preprocessor.js",
"setupFiles": [
"<rootDir>/scripts/test-util/env-setup.js"
],
"unmockedModulePathPatterns": [
"react",
"enzyme",
"react-dom",
"react-addons-test-utils",
"fbjs",
"cheerio",
"htmlparser2",
"underscore",
"lodash",
"domhandler",
"object.assign",
"define-properties",
"function-bind",
"object-keys"
],
"moduleFileExtensions": [
"js",
"json",
"jsx"
]
}
}