-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.83 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "music_website",
"version": "0.0.1",
"license": "MIT",
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
4
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": "off"
}
},
"jshintConfig": {
"node": true
},
"dependencies": {
"bootstrap": "^3.3.7",
"formik": "^0.11.11",
"jquery": "^3.3.1",
"popper.js": "^1.12.9",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-bootstrap": "^0.32.1",
"react-html-id": "^0.1.4",
"react-tag-input": "^5.0.2",
"yup": "^0.25.1"
},
"devDependencies": {
"autoprefixer": "^8.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.10",
"django-react-csrftoken": "^1.0.3",
"eslint": "^4.19.0",
"eslint-plugin-react": "^7.7.0",
"expose-loader": "^0.7.4",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "1.1.11",
"postcss-loader": "^2.1.1",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.2.0",
"style-loader": "^0.21.0",
"url-loader": "1.0.1",
"webpack": "^4.8.3",
"webpack-bundle-tracker": "^0.2.1",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
},
"scripts": {
"start": "webpack-dev-server --inline --hot --progress --port 3000 --mode development",
"watch": "webpack -d --mode development --config webpack.config.js --watch",
"build": "webpack -d --mode development --config ./webpack.config.js --progress",
"build:prod": "webpack -p --mode production --config ./webpack.config.js --progress",
"collectstatic": "python ./src/manage.py collectstatic --noinput",
"heroku-postbuild": "yarn run build"
}
}