-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 904 Bytes
/
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
{
"name": "typescript",
"version": "1.0.0",
"main": "index.js",
"repository": "",
"author": "",
"license": "MIT",
"scripts": {
"bundle": "webpack",
"copy-options": "copyfiles -u 1 **/options/*.json dist",
"build": "yarn && yarn bundle && yarn copy-options"
},
"dependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-block-scoping": "^7.14.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"babel-loader": "^8.1.0",
"core-js": "^3.13.0",
"faker": "^5.5.3",
"typescript": "^3.9.5"
},
"devDependencies": {
"@types/faker": "^6.6.9",
"@types/k6": "^0.31.0",
"@types/webpack": "^4.41.33",
"copyfiles": "^2.4.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}