-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.85 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
100
101
102
103
104
105
106
107
108
{
"name": "react-starterify-trail",
"version": "2.4.1",
"description": "Sample Trail React Application",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/markclow/react-trails"
},
"keywords": [
"gulp",
"react",
"browserify",
"seed",
"boilerplate",
"kickstarter",
"ES6",
"ES2015",
"babel"
],
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"scripts": {
"start": "npm run watch",
"watch": "gulp watch",
"build": "gulp build",
"deploy": "gulp deploy",
"test": "jest src/__tests__"
},
"author": "Mark Clow (thanks to Maurizio Mangione's react startify)",
"license": "MIT",
"bugs": {
},
"homepage": "https://github.com/mark-clow/react-trails",
"dependencies": {
"history": "^3.0.0",
"jquery": "^2.1.4",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-mdl": "^1.6.1",
"react-router": "^2.3.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel": "^6.5.2",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-jest": "^13.2.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"babelify": "^7.3.0",
"browser-sync": "^2.12.5",
"browserify": "^13.0.0",
"cssnano": "^3.5.2",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^1.0.3",
"eslint-plugin-react": "^5.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-html-replace": "^1.5.5",
"gulp-imagemin": "^3.0.1",
"gulp-if": "^2.0.1",
"gulp-notify": "^2.2.0",
"gulp-postcss": "^6.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-uglify": "^1.5.3",
"jasmine-expect": "^2.0.2",
"jest-cli": "^13.2.3",
"imagemin-pngquant": "^5.0.0",
"lodash": "^4.11.1",
"postcss-nested": "^1.0.0",
"postcss-simple-extend": "^1.0.0",
"postcss-simple-vars": "^2.0.0",
"react-addons-test-utils": "^15.0.1",
"rimraf": "^2.5.2",
"run-sequence": "^1.1.5",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"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/lodash",
"<rootDir>/node_modules/jasmine-expect",
"<rootDir>/node_modules/jasmine-matchers-loader",
"<rootDir>/node_modules/react-mdl"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/bower_components/",
"<rootDir>/build/"
],
"setupFiles": ["<rootDir>/src/scripts/material.js"]
}
}