-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 KB
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
{
"name": "react-with-state-props",
"version": "2.0.4",
"description": "easy React state",
"repository": {
"type": "git",
"url": "https://github.com/collardeau/react-with-state-props"
},
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"watch": "cross-env NODE_ENV=development webpack -w",
"build": "cross-env NODE_ENV=development webpack"
},
"author": "Thomas Collardeau",
"license": "MIT",
"dependencies": {
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.40",
"awesome-typescript-loader": "^4.0.1",
"prop-types": "^15.6.1",
"ramda": "^0.25.0",
"source-map-loader": "^0.2.3",
"typescript": "^2.7.2"
},
"devDependencies": {
"@types/jest": "^22.2.1",
"@types/ramda": "github:types/npm-ramda#dist",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"jest": "^22.4.2",
"react": "^16.2.0",
"react-test-renderer": "^16.2.0",
"ts-jest": "^22.4.2",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10"
},
"peerDependency": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"jest": {
"moduleFileExtensions": ["ts", "tsx", "js"],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$"
}
}