-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "web-intercept",
"version": "1.0.0",
"description": "A web intercept widget meant for displaying a survey call to action.",
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.config.js --mode production --env.production",
"start": "./node_modules/.bin/webpack-dev-server --open --mode development --env.development",
"test": "jest"
},
"author": "Saadullah Saeed",
"license": "Apache 2.0",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-preact": "^2.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"jest": "^24.9.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"preact": "^10.5.2",
"dompurify": "^2.1.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"babel-preset-preact"
]
},
"jest": {
"moduleNameMapper": {
"^.+\\.(css|scss)$": "<rootDir>/jest/staticHandler.js"
}
}
}