-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.4 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "moments",
"version": "1.0.2",
"description": "Time calculation has never been so fun!",
"keywords": [
"moments",
"time calculation",
"time since",
"time until",
"date calculation",
"date manipulation"
],
"homepage": "https://dreamyguy.github.io/moments/",
"repository": {
"type": "git",
"url": "https://github.com/dreamyguy/moments"
},
"author": {
"name": "Wallace Sidhrée",
"email": "[email protected]",
"url": "http://sidhree.com/"
},
"copyright": "Copyright (c) Wallace Sidhrée - All rights reserved.",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"acorn": "^6.1.1",
"ajv": "^6.10.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"bootstrap-4-grid": "^2.4.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"jest-css-modules": "^2.0.0",
"jest-transform-stub": "^2.0.0",
"moment": "^2.24.0",
"normalize.css": "^8.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-emojis": "^1.0.5",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-scripts": "^3.0.1",
"react-test-renderer": "^16.8.6",
"redux": "^4.0.1"
},
"devDependencies": {
"babel-preset-react-app-babel-7": "^4.0.2-0",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.6.4",
"fork-me-on-github": "^1.0.6",
"gh-pages": "^2.0.1",
"jsdom-quokka-plugin": "^1.0.14",
"node-sass": "^4.12.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"test:local": "jest --verbose --watch",
"test:coverage": "jest --coverage",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"modulePaths": [
"src",
"node_modules"
],
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
".[css,scss]": "./node_modules/jest-css-modules"
},
"testEnvironment": "node",
"setupFiles": [
"./src/test/setupTests.js"
]
},
"engines": {
"node": ">=v12.3.1"
}
}