-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
{
"name": "insee-deces-front",
"description": "Interface fichier des décès de l'Insee",
"version": "0.1.0",
"license": "MIT",
"author": "Florian Cassayre",
"repository": {
"type": "git",
"url": "https://github.com/arbre-app/insee-deces-front.git"
},
"sideEffects": [
"*.css"
],
"main": "build/library.js",
"private": false,
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"bootstrap": "^4.5.3",
"chroma-js": "^2.1.2",
"final-form": "^4.20.2",
"prop-types": "^15.7.2",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-bootstrap-icons": "^1.6.1",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.3",
"react-helmet": "^6.1.0",
"react-intl": "^5.20.10",
"react-scripts": "4.0.3",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build:standalone": "rm -rf build && react-scripts build",
"build:library": "rm -rf build && NODE_ENV=production babel src --out-dir build --copy-files",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.14.5"
}
}