-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.72 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
{
"name": "srm-example",
"homepage": ".",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"serve": "serve -c build",
"eject": "react-app-rewired eject"
},
"dependencies": {
"@formatjs/intl-locale": "^2.4.16",
"@formatjs/intl-relativetimeformat": "^8.0.6",
"@nicecactus/srm": "link:..",
"react": "link:../node_modules/react",
"react-dom": "link:../node_modules/react-dom",
"react-intl": "link:../node_modules/react-intl"
},
"devDependencies": {
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@testing-library/jest-dom": "link:../node_modules/@testing-library/jest-dom",
"@testing-library/react": "link:../node_modules/@testing-library/react",
"@testing-library/user-event": "link:../node_modules/@testing-library/user-event",
"@types/jest": "link:../node_modules/@types/jest",
"@types/node": "link:../node_modules/@types/node",
"@types/react": "link:../node_modules/@types/react",
"@types/react-dom": "link:../node_modules/@types/react-dom",
"customize-cra": "^1.0.0",
"prefix-css-loader": "^1.0.0",
"react-app-rewired": "^2.1.8",
"react-scripts": "link:../node_modules/react-scripts",
"string-replace-loader": "^3.0.1",
"typescript": "link:../node_modules/typescript",
"typescript-react-intl": "link:../node_modules/typescript-react-intl"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}