-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
56
57
58
59
60
{
"name": "react-todo",
"version": "1.0.0",
"description": "Simple TodoMVC app made by following the course of Grafikart",
"repository": {
"type": "git",
"url": "git@github.com:antoine-briand/react-todo.git"
},
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot",
"test": "jest",
"build": "cross-env NODE_ENV=production webpack"
},
"keywords": [
"todo",
"list",
"react"
],
"author": "Antoine Briand",
"license": "ISC",
"devDependencies": {
"@types/jest": "^21.1.10",
"@types/react": "^16.0.31",
"@types/react-dom": "^16.0.3",
"cross-env": "^5.1.3",
"jest": "^22.0.4",
"ts-jest": "^22.0.0",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?|ts?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{ts, tsx, js,jsx}",
"!**/node_modules/**"
]
}
}