-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "creative_outlet_frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"create": "webpack",
"start": "npm run build:style && webpack-dev-server --config webpack.develop.js --open",
"build": "webpack -p --config webpack.prod.js && node configure-netlify-redirect",
"build:style": "tailwind build app/styles/index.css -o app/styles/tailwind.css"
},
"keywords": [],
"engines": {
"node": "v12.16.3",
"npm": "6.14.4"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-regular-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"axios": "^0.19.0",
"formik": "^2.0.7",
"history": "^4.10.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-dropzone": "^10.2.1",
"react-router-dom": "^5.1.2",
"react-waypoint": "^9.0.2",
"rxjs": "^6.5.3",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.7.4",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.3.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"postcss-cli": "^6.1.3",
"style-loader": "^1.0.1",
"tailwindcss": "^1.1.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^5.0.9"
}
}