forked from DevCycleHQ-Labs/example-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 897 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 897 Bytes
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
{
"name": "example-javascript",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --config webpack.development.config.js",
"build": "webpack --mode=production",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom"
},
"dependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@devcycle/openfeature-web-provider": "^0.11.1",
"@openfeature/web-sdk": "^1.1.0",
"babel-loader": "^9.1.3",
"dotenv-webpack": "^8.0.1",
"webpack": "^5.89.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}