-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathpackage.json
62 lines (62 loc) · 2.17 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
{
"name": "openfeature_web",
"version": "1.0.0",
"description": "An example project to test GO Feature Flag with the Openfeature web sdk",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"css:scss": "node-sass --output-style compressed -o dist src/scss",
"css:autoprefixer": "postcss -u autoprefixer -r dist/*.css",
"css:lint": "stylelint src/scss/*.scss --custom-syntax postcss-scss",
"build:css": "npm run css:lint && npm run css:scss && npm run css:autoprefixer",
"watch:css": "onchange \"src/scss\" -- npm run build:css",
"build:images": "mkdir -p dist/images/ && cp -r src/images/* dist/images/",
"build:js": "webpack --mode=production",
"watch:js": "onchange \"src/js\" -- webpack --mode=development",
"build:html": "posthtml -c posthtml.json",
"watch:html": "onchange \"src/views\" -- npm run build:html",
"serve": "browser-sync start --server \"dist\" --files \"dist\"",
"serve:docker": "browser-sync start --open false --server \"dist\" --files \"dist\"",
"build": "run-p build:*",
"watch": "run-p build watch:* serve"
},
"keywords": [
"go-feature-flag",
"GO Feature Flag",
"Openfeature",
"Open Feature",
"open-feature"
],
"author": "Thomas Poignant",
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"browser-sync": "^3.0.3",
"eslint": "^9.17.0",
"eslint-webpack-plugin": "^4.2.0",
"htmlnano": "^2.1.1",
"imagemin-cli": "^8.0.0",
"node-sass": "^9.0.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss-cli": "^11.0.0",
"postcss-scss": "^4.0.9",
"posthtml": "^0.16.6",
"posthtml-cli": "^0.10.0",
"posthtml-modules": "^0.9.1",
"stylelint": "^16.11.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@openfeature/go-feature-flag-web-provider": "^0.2.3",
"@openfeature/web-sdk": "^1.3.2",
"highlight.js": "^11.11.0",
"uuid": "^11.0.3"
}
}