-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.49 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
{
"name": "geocity-styleguide",
"version": "0.7.0",
"description": "Public space is the point of access to information on the activities planned on the territory of your municipality",
"keywords": [
"styleguide",
"toolkit",
"boilerplate",
"starterkit",
"fractal"
],
"repository": {
"type": "git",
"url": "https://github.com/yverdon/geocity_styleguide"
},
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development concurrently 'node ./server.js' 'webpack serve'",
"build": "NODE_ENV=production concurrently 'npm run build:fractal' 'npm run build:webpack'",
"build:webpack": "NODE_ENV=production webpack",
"build:fractal": "NODE_ENV=production fractal build",
"eslint": "eslint 'assets/scripts/**/*.js'",
"eslint:fix": "npm run eslint -- --fix",
"stylelint": "stylelint 'assets/css/**/*.css'",
"stylelint:fix": "npm run stylelint -- --fix",
"prettier": "prettier 'assets/scripts/**/*.js' --list-different",
"prettier:fix": "npm run prettier -- --write",
"validate": "npm run eslint && npm run prettier && npm run stylelint",
"format": "npm run eslint:fix && npm run prettier:fix && npm run stylelint:fix",
"release": "release-it",
"deploy": "rsync -e 'ssh -p 2202' -avzP --delete --exclude='.*' dist/ [email protected]:/var/www/html/geocity-styleguide.liip.ch/"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@frctl/fractal": "^1.5.15",
"@frctl/nunjucks": "^2.0.15",
"@liip-lausanne/eslint-config": "^1.0.0",
"@release-it/conventional-changelog": "^5.1.1",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.6.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"marked": "^4.2.12",
"mini-css-extract-plugin": "^2.7.3",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.0.2",
"prettier": "^2.8.4",
"release-it": "^15.7.0",
"stylelint": "^15.2.0",
"stylelint-config-rawbot": "^1.0.0",
"svg-sprite-loader": "^6.0.11",
"svgo": "^3.0.2",
"svgo-loader": "^4.0.0",
"svgxuse": "^1.2.6",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"tailwindcss": "^3.2.7"
}
}