-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
53
54
55
{
"name": "lenses",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"start": "webpack-dev-server --mode development",
"build": "webpack -p --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christopherjturner/lenses.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/christopherjturner/lenses/issues"
},
"homepage": "https://github.com/christopherjturner/lenses#readme",
"devDependencies": {
"@types/jest": "^23.3.2",
"jest": "^23.6.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^23.1.4",
"ts-loader": "^5.1.0",
"typescript": "^3.0.3",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"apprun": "^1.15.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
}
}