This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
80 lines (80 loc) · 2.5 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
{
"name": "datapass",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=12.18.3 <14"
},
"scripts": {
"start": "export $(cat /etc/signup-front.conf | sed 's/^/REACT_APP_/') && serve -l 3002 -s build",
"dev": "export $(cat signup-front.conf | sed 's/^/REACT_APP_/') && PORT=4000 react-scripts start",
"dev-with-remote-backend": "export $(cat /etc/signup-front.conf | sed 's/^/REACT_APP_/') && REACT_APP_BACK_HOST=https://back.datapass-test.api.gouv.fr PORT=4000 react-scripts start",
"dev-in-vm": "export $(cat /etc/signup-front.conf | sed 's/^/REACT_APP_/') && BROWSER=none CHOKIDAR_USEPOLLING=true PORT=3002 react-scripts start",
"build": "export $(cat /etc/signup-front.conf | sed 's/^/REACT_APP_/') && react-scripts build",
"test-dev": "react-scripts test",
"test": "CI=true react-scripts test",
"eject": "react-scripts eject",
"precommit": "pretty-quick --staged",
"lint": "eslint src/**/*.{js,ts,tsx}"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@gouvfr/dsfr": "^1.0.0-rc1.0",
"@justfixnyc/react-aria-modal": "^5.1.2-alpha.0",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.169",
"@types/node": "^15.3.0",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"@types/react-router-dom": "^5.1.7",
"axios": "^0.21.1",
"clipboard": "^2.0.8",
"eslint-plugin-prettier": "^2.7.0",
"flat": "^4.1.0",
"js-file-download": "^0.4.12",
"limiter": "^1.1.5",
"linkifyjs": "^2.1.8",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"piwik-react-router": "^0.12.1",
"prettier": "^2.3.0",
"prop-types": "^15.7.2",
"raven-js": "^3.27.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-table": "^7.5.2",
"react-table-6": "^6.11.0",
"recharts": "^2.0.9",
"serve": "^11.3.2",
"template.data.gouv.fr": "^1.3.2",
"typescript": "^4.2.4"
},
"devDependencies": {
"@testing-library/react-hooks": "^6.0.0",
"husky": "^0.14.3",
"jest-mock-extended": "^1.0.15",
"nock": "^13.0.11",
"pretty-quick": "^1.11.0",
"react-axe": "^3.5.3",
"react-test-renderer": "^16.8.6"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"not op_mini all"
],
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(@justfixnyc/react-aria-modal)/)/"
]
}
}