-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "pw-design-system",
"version": "1.0.0",
"description": "Le Design System utilisé par Paris Web.",
"repository": "Paris-Web/pw-design-system",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"start": "run-p start:*",
"start:hugo": "hugo server -d ../dist -s site -v --buildDrafts --buildFuture",
"start:webpack": "webpack-dev-server --",
"build": "run-s build:webpack build:hugo",
"build:hugo": "hugo -d ../dist -s site -v",
"build:webpack": "webpack --mode=production"
},
"license": "MIT",
"dependencies": {
"algoliasearch": "^4.14.2",
"classnames": "^2.3.2",
"dotenv": "^16.0.3",
"instantsearch.js": "^4.49.1",
"lit-html": "^2.4.0",
"rgb-hex": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.20.2",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"core-js": "^3.26.1",
"css-loader": "^6.7.2",
"hugo-bin": "^0.102.0",
"mini-css-extract-plugin": "^2.7.2",
"npm-run-all": "^4.1.5",
"postcss-loader": "^7.0.2",
"postcss-nested": "^6.0.0",
"postcss-url": "^10.1.3",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"sideEffects": false
}