-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"name": "nauticalminds",
"version": "1.0.0",
"description": "Nautical Minds Website",
"private": true,
"scripts": {
"watch": "webpack --config webpack.dev.js --watch",
"build": "webpack --config webpack.dev.js",
"dist": "webpack --config webpack.prod.js",
"tailwind-watch": "npx tailwind -w -o ./public/build/tailwind.css ./src/css/Tailwind.css",
"tailwind-build": "npx tailwind -o ./public/build/tailwind.css ./src/css/Tailwind.css"
},
"author": "Jason Traub",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.0.5",
"babel-plugin-inline-json-import": "^0.3.2",
"jslint": "^0.12.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tailwindcss": "^3.0.7",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
}
}