This repository was archived by the owner on Jan 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 KB
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
{
"name": "@zenika/evoli-css",
"version": "0.3.0",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lib:build": "node-sass src/library/index.scss public/lib/evoli.css",
"lib:build:compressed": "node-sass src/library/index.scss public/lib/evoli.compressed.css --output-style compressed",
"lib:build:watch": "npm run lib:build && npm run lib:build -- -w",
"lint": "eslint src --ext js,jsx",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier \"src/**/*.{jsx,css,js}\"",
"prettier:write": "npm run prettier -- --write",
"prettier:check": "npm run prettier -- --check"
},
"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"
]
},
"prettier": {
"semi": false,
"printWidth": 100,
"singleQuote": true
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.8.2",
"bulma": "^0.7.5",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"firebase-tools": "^6.10.0",
"node-sass": "^4.12.0",
"prettier": "^1.17.1",
"prettify-html": "0.0.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"react-sandbox-editor": "^2.0.1",
"react-scripts": "3.0.1"
}
}