-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.3 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
{
"name": "ReactTodoApp",
"version": "1.0.0",
"description": "Simple pure React web todo list",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"//this command will fallback to default src/index.js file to build// build": "webpack --mode development",
"//this command will fallback to default src/index.js file to build// build-production": "webpack --mode production",
"build": "webpack --mode development",
"build-production": "webpack --mode production",
"// barebone webpack dev server config //dev": "webpack-dev-server --mode --open",
"dev": "webpack-dev-server --mode development --open",
"lint": "eslint \"src/**/*.{js,jsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Uraharadono/ReactTodo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Uraharadono/ReactTodo/issues"
},
"homepage": "https://github.com/Uraharadono/ReactTodo#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^7.1.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"cssnano": "^4.1.7",
"eslint": "^5.9.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.10.0",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-loader": "^3.0.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.2.0"
},
"dependencies": {
"bootstrap": "^4.1.3",
"classnames": "^2.2.6",
"date-fns": "^1.30.1",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"ramda": "^0.26.1",
"react-datepicker": "^2.0.0",
"react-images": "^0.5.19",
"react-router-dom": "^4.3.1",
"react-tabs": "^2.3.0",
"react-textarea-autosize": "^7.1.0",
"reactstrap": "^6.5.0",
"validator": "^10.9.0"
}
}