-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 2.08 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
{
"name": "fr.openfisca.org",
"description": "Site web officiel de la communauté OpenFisca France",
"main": "index.js",
"repository": "git@github.com:openfisca/fr.openfisca.org.git",
"author": "OpenFisca Core Team",
"license": "AGPL 3",
"private": false,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "npm run build && npm run export",
"code:check": "eslint -c .eslintrc --ext .js,.jsx --ignore-path .gitignore .",
"code:format": "prettier-eslint --write '**/*.{js,jsx}' --ignore-path .gitignore",
"scss:check": "stylelint --config .stylelintrc --ignore-path .gitignore styles/**/*.scss",
"scss:format": "prettier-stylelint --write styles/**/*.scss --ignore-path .gitignore --syntax scss --quiet",
"style:check": "npm run code:check && npm run scss:check",
"style:format": "npm run code:format && npm run scss:format",
"postexport": "node post-export.js"
},
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"autoprefixer": "^9.5.1",
"bootstrap": "^4.3.1",
"i18next": "^15.1.0",
"i18next-browser-languagedetector": "^3.0.1",
"i18next-xhr-backend": "^2.0.1",
"next": "^7.0.2",
"node-sass": "^4.12.0",
"postcss": "^7.0.16",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-i18next": "^9.0.10"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-wrap-in-js": "^1.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"prettier-stylelint": "^0.4.2",
"stylelint": "^10.0.1",
"stylelint-config-sass-guidelines": "^6.0.0",
"stylelint-scss": "^3.6.1"
}
}