-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.86 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
{
"name": "Right-Season",
"version": "1.0.2",
"description": "A simple react app that's mean't to answer only one question : is it the right season to buy this fruit/vegetable/cereal/mushroom ?",
"keywords": [
"react",
"starter-kit",
"less",
"babel",
"lint",
"yarn"
],
"bugs": {
"url": "https://github.com/MarcAlx/Right-season/issues"
},
"author": {
"name": "Marc_Alx"
},
"repository": {
"type": "git",
"url": "https://github.com/MarcAlx/Right-season"
},
"engines": {
"node": "*"
},
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack",
"release": "webpack --env.prod",
"lint": "./node_modules/.bin/eslint ./src",
"run-dev": "./node_modules/.bin/http-server dist/dev -p 3000",
"run-prod": "./node_modules/.bin/http-server dist/prod -p 3001"
},
"precommit": [
"release"
],
"dependencies": {
"eslint-plugin-react": "^7.5.1",
"i18next": "^10.2.2",
"i18next-browser-languagedetector": "^2.1.0",
"material-ui": "^1.0.0-beta.26",
"material-ui-icons": "^1.0.0-beta.17",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-i18next": "^7.3.1",
"react-markdown": "^3.3.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"http-server": "^0.10.0",
"json-loader": "^0.5.7",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"pre-commit": "^1.2.2",
"style-loader": "^0.19.0",
"webpack": "^3.8.1"
}
}