-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.56 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
{
"name": "js-template",
"version": "1.0.0",
"description": "Simple template of JS with Tailwind",
"main": "webpack.config.js",
"scripts": {
"test": "jest --coverage",
"start": "concurrently \"npm run build\" \"npm run css-dev\"",
"build": "npx webpack -w --config webpack.config.js --mode development",
"css-dev": "TAILWIND_MODE=watch postcss src/styles.css -o dist/styles.css -w --verbose",
"css-prod": "NODE_ENV=production postcss src/styles.css -o dist/styles.css",
"prod": "npx webpack -w --config webpack.config.js --env production",
"start-prod": "concurrently \"npm run prod\" \"npm run css-prod\"",
"deploy": "gh-pages -d dist",
"lint": "npx eslint . && npx stylelint **/*.{css,scss} && npx hint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikoescobal/js-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nikoescobal/js-template/issues"
},
"homepage": "https://github.com/nikoescobal/js-template#readme",
"dependencies": {
"autoprefixer": "^10.3.2",
"concurrently": "^6.2.1",
"gh-pages": "^3.2.3",
"postcss-cli": "^8.3.1",
"tailwind": "^4.0.0"
},
"devDependencies": {
"babel-loader": "^8.2.2",
"css-loader": "^6.4.0",
"cssnano": "^5.0.8",
"html-webpack-plugin": "^5.4.0",
"jest": "^27.2.4",
"json-loader": "^0.5.7",
"lodash": "^4.17.21",
"style-loader": "^3.3.0",
"tailwindcss": "^2.2.16",
"url-loader": "^4.1.1",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.1"
}
}