-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "cdts_next",
"version": "1.0.0",
"description": "Prototype for next version of the Centrally Deployed Template Solution.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"start": "webpack-dev-server --open",
"build": "webpack --mode=\"production\""
},
"keywords": [
"Templates",
"ECMA6"
],
"author": "Stan Grabinski",
"license": "ISC",
"devDependencies": {
"@babel/register": "^7.4.0",
"@types/jest": "^24.0.11",
"@types/jsdom": "^12.2.3",
"@types/node": "^11.13.4",
"babel-jest": "^24.7.1",
"clean-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^5.0.0",
"jest": "^24.7.1",
"jsdom": "^11.11.0",
"node-fetch": "^2.1.2",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.1",
"typescript": "^3.4.3",
"webpack": "^4.11.1",
"webpack-cli": "^3.0.2",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"xss-filters": "^1.2.7"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}