-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 850 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 850 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
{
"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.28.5",
"@babel/preset-env": "^7.28.5",
"@devcycle/js-client-sdk": "^1.47.7",
"babel-loader": "^10.0.0",
"dotenv-webpack": "^8.1.1",
"webpack": "^5.104.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}