-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
88 lines (88 loc) · 2.23 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
86
87
88
{
"name": "{{ project_name }}",
"version": "0.0.0",
"description": "The {{ project_name|title }} Project",
"main": "",
"engines": {
"node": ">=10.15 <11"
},
"directories": {
"doc": "docs"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/gulp test",
"build": "./node_modules/.bin/gulp deploy",
"dev": "./node_modules/.bin/gulp"
},
"repository": {
"type": "git",
"url": "[email protected]:[ORGANIZATION]/{{ project_name }}.git"
},
"author": "",
"license": "BSD",
"bugs": {
"url": "https://github.com/[ORGANIZATION]/{{ project_name }}/issues"
},
"homepage": "https://github.com/[ORGANIZATION]/{{ project_name }}#readme",
"dependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-plugin-rewire": "^1.2.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"bootstrap": "^4.3.1",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"eslint": "^6.5.0",
"fancy-log": "^1.3.3",
"file-exists": "^5.0.1",
"flux": "^3.1.3",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-if": "^3.0.0",
"gulp-istanbul": "^1.1.3",
"gulp-istanbul-enforcer": "^1.0.3",
"gulp-jasmine2-phantomjs": "^1.0.1",
"gulp-less": "^4.0.1",
"gulp-livereload": "^4.0.2",
"gulp-mocha": "^7.0.1",
"gulp-modernizr": "3.3.0",
"gulp-notify": "^3.2.0",
"gulp-rename": "^1.4.0",
"gulp-streamify": "1.0.2",
"gulp-touch-fd": "github:funkedigital/gulp-touch-fd",
"gulp-uglify": "^3.0.2",
"immutable": "^3.8.2",
"isparta": "^4.1.1",
"jquery": "^3.4.1",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"less": "^3.10.3",
"mocha": "^6.2.1",
"mocha-jsdom": "^2.0.0",
"react": "^16.10.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.10.1",
"react-functional": "^3.0.2",
"sinon": "^7.5.0",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1",
"yargs": "^14.0.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}