-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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
{
"name": "js-vanilla",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run prod:build:tailwind && cross-env NODE_ENV=production webpack --config ./internals/webpack.prod.js",
"build:tailwind" : "npx tailwindcss -i ./src/styles/global.css -o ./public/tailwind-build.css",
"prod:build:tailwind": "cross-env NODE_ENV=production npm run build:tailwind",
"dev": "npm run build:tailwind && cross-env NODE_ENV=developmen webpack serve --config ./internals/webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"javascript-vanilla"
],
"author": "Luis Isasi",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.8",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"postcss": "^8.3.6",
"standard": "^16.0.3",
"tailwindcss": "^2.2.7",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"cross-env": "^7.0.3",
"eslint-config-standard": "^16.0.3"
}
}