-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.29 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
{
"homepage": "https://xuan19.github.io/Excercise-React-Meteo/",
"name": "Eexcercise-React-Meteo",
"scripts": {
"deploy":"gh-pages -d dist",
"start": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js",
"clean": "rm -rf dist",
"clean:all": "rm -rf dist node_modules yarn.lock package-lock.json",
"test": "mocha --require tests/.setup.js tests/**/*.test.js",
"test:watch": "mocha --watch --require tests/.setup.js tests/**/*.test.js"
},
"devDependencies": {
"@babel/core": "*",
"@babel/plugin-proposal-class-properties": "*",
"@babel/plugin-proposal-object-rest-spread": "*",
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"@babel/register": "*",
"babel-eslint": "*",
"babel-loader": "*",
"bundle-stats-webpack-plugin": "*",
"chai": "*",
"clean-webpack-plugin": "*",
"copy-webpack-plugin": "*",
"cross-env": "*",
"css-loader": "*",
"cssnano": "*",
"enzyme": "*",
"enzyme-adapter-react-16": "*",
"eslint": "*",
"eslint-config-airbnb": "*",
"eslint-import-resolver-alias": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-react": "*",
"eslint-plugin-react-hooks": "*",
"file-loader": "*",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "*",
"ignore-styles": "*",
"jsdom": "*",
"mini-css-extract-plugin": "*",
"mocha": "*",
"optimize-css-assets-webpack-plugin": "*",
"postcss-loader": "*",
"postcss-preset-env": "*",
"resolve-url-loader": "*",
"sass": "*",
"sass-loader": "*",
"style-loader": "*",
"terser-webpack-plugin": "*",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "*",
"webpack-merge": "*"
},
"dependencies": {
"axios": "^0.21.1",
"classnames": "^2.3.1",
"prop-types": "*",
"react": "*",
"react-dom": "*",
"react-router-dom": "^5.2.0",
"semantic-ui-react": "^2.0.3",
"slugify": "^1.5.3"
},
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:Xuan19/exercice_meteo.git",
"author": "Xuan19 <xuanwang602@yahoo.com>",
"license": "MIT"
}