-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 942 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 942 Bytes
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
{
"name": "generator-react-webpack-base",
"version": "1.2.1",
"description": "A base template for a fullstack react webpack application",
"homepage": "",
"author": {
"name": "Elvey",
"email": "matt.elvey@gmail.com",
"url": ""
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"react",
"webpack",
"isomorphic",
"node",
"yeoman-generator"
],
"dependencies": {
"chalk": "^1.1.3",
"ejs": "^3.1.5",
"mkdirp": "^0.5.5",
"yeoman-generator": "^4.12.0",
"yosay": "^1.2.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"mocha": "^7.1.0",
"yeoman-assert": "^2.2.3",
"yeoman-test": "^1.9.1"
},
"eslintConfig": {
"env": {
"mocha": true
}
},
"repository": "melvey/generator-react-webpack-base",
"scripts": {
"test": "mocha test/*.js"
},
"license": "Apache-2.0"
}