-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.7 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
{
"name": "water-you-talking-about",
"version": "1.0.0",
"description": "A water consumption app",
"main": "index.jsx",
"scripts": {
"dev": "webpack-dev-server --open --host 0.0.0.0 --config ./webpack.config.js",
"build": "webpack --config webpack.config.js && cp ./_redirects ./dist/_redirects",
"lint": "eslint **/*.{js,jsx} --quiet",
"test": "babel-tape-runner tests/test.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACN3/Water-you-talking-about.git"
},
"keywords": ["Water", "Sea", "Wet", "Moist", "H20"],
"author": ["Amir ", "Sami"],
"license": "ISC",
"bugs": {
"url": "https://github.com/FACN3/Water-you-talking-about/issues"
},
"pre-commit": ["lint", "test"],
"homepage": "https://github.com/FACN3/Water-you-talking-about#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"lib": "^3.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"styled-components": "^3.1.6",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-tape-runner": "^2.0.1",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-env": "0.0.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"pre-commit": "^1.2.2",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
}
}