This repository has been archived by the owner on Jan 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "webkid-react-starterkit",
"version": "1.0.1",
"description": "Lightweight starting point for a react web app.",
"keywords": [
"react",
"starterkit",
"frontend",
"boilerplate",
"reflux",
"react-router"
],
"main": "index.html",
"scripts": {
"start": "gulp clean && gulp",
"test": "jest"
},
"author": "@moklick <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.1.2",
"babel-jest": "^5.3.0",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.0",
"gulp-connect": "^2.2.0",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^1.1.0",
"gulp-size": "^2.0.0",
"gulp-stylus": "^2.1.0",
"gulp-uglify": "^1.4.2",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"gulp-webpack": "^1.5.0",
"jest-cli": "^0.7.1",
"object-assign": "^4.0.1",
"orchestrator": "^0.3.7",
"react-addons-test-utils": "^0.14.2",
"webpack": "^1.12.3"
},
"dependencies": {
"history": "^1.13.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-router": "^2.6.1",
"reflux": "^0.4.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/object-assign"
]
}
}