-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "websnippets",
"version": "1.0.0",
"license": "MIT",
"description": "A web extension for snippets on the web",
"author": "PatrickHollweck <[email protected]>",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "cross-env NODE_ENV=development webpack --config=build/webpack.js --watch --mode=development",
"prod": "cross-env NODE_ENV=production webpack --config=build/webpack.js --mode=production",
"format": "prettier --write src/**/*.ts"
},
"devDependencies": {
"@types/bootstrap": "^4.0.1",
"@types/chrome": "0.0.63",
"@types/jest": "^22.2.2",
"@types/jquery": "^3.3.1",
"@types/webpack": "^4.1.3",
"bootstrap": "^4.0.0",
"jquery": "^3.3.1",
"awesome-typescript-loader": "^5.0.0",
"cross-env": "^5.1.4",
"glob": "^7.1.2",
"jest": "^22.4.3",
"prettier": "^1.11.1",
"ts-jest": "^22.4.2",
"typescript": "^2.8.1",
"webpack": "^4.5.0",
"webpack-blocks": "^1.0.0",
"webpack-cli": "^2.0.14"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__test__/*.+(ts|js)"
]
}
}