-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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": "octo-ref",
"version": "0.1.0",
"dependencies": {
"github-injection": "^0.1.0",
"object-assign": "^4.0.1",
"react": "^0.14.7",
"react-color": "^2.0.0",
"react-dom": "^0.14.7",
"typescript": "3.0.3",
"webpack-cli": "^3.0.8"
},
"devDependencies": {
"@types/chrome": "0.0.37",
"@types/jest": "^23.1.0",
"@types/node": "^10.5.1",
"@types/puppeteer": "^1.5.0",
"@types/react": "^0.14.55",
"@types/react-dom": "^0.14.20",
"classnames": "^2.2.3",
"jest": "^23.1.0",
"json-loader": "^0.5.7",
"puppeteer": "1.6.2",
"ts-jest": "^23.0.0",
"ts-loader": "5.2.0",
"webpack": "^4.14.0"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"build-tests": "webpack --config __tests__/webpack.config.js",
"dev": "webpack --watch",
"pretest": "npm run build; npm run build-tests",
"test": "jest"
},
"jest": {
"verbose": true,
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.jest.json"
}
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
}
}
}