-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
67 lines (67 loc) · 1.65 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
{
"name": "mullet",
"version": "1.0.0",
"description": "Mullet Stack: Facebook in the front. Walmart in the back. (React.js/Hapi)",
"main": "walmart.js",
"watch": {
"test": "{src,test}/*.js"
},
"scripts": {
"build": "webpack",
"test": "jest --verbose && lab -v -l",
"lint": "eslint . --ext .js",
"watch": "npm-watch",
"start": "node walmart.js",
"format": "prettier --single-quote --write *.js src/components/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lynnaloo/mullet.git"
},
"keywords": [
"react",
"hapi",
"node",
"Facebook",
"Walmart",
"mullet"
],
"author": "Linda Nichols",
"license": "MIT",
"bugs": {
"url": "https://github.com/lynnaloo/mullet/issues"
},
"homepage": "http://www.mullet.io",
"dependencies": {
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^6.0.1",
"babel": "6.23.0",
"babel-core": "6.4.0",
"babel-jest": "21.0.0",
"babel-loader": "7.0.0",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"jest": "21.0.0",
"npm-watch": "0.2.0",
"prop-types": "15.6.2",
"react": "16.10.1",
"react-dom": "16.10.1",
"react-scripts": "3.1.2",
"webpack": "4.0.0",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"code": "5.0.0",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.6.0",
"eslint": "6.3.0",
"eslint-config-eta": "1.0.0",
"eslint-plugin-babel": "4.1.1",
"eslint-plugin-react": "7.16.0",
"jest-cli": "21.0.0",
"lab": "17.0.0",
"prettier": "1.18.0",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.5.2"
}
}