-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"private": true,
"engines": {
"node": "^12.10.0",
"npm": "^6.10.3"
},
"name": "full-stack-recruitment-test",
"version": "1.0.0",
"description": "Skyscanner full-stack recruitment test.",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "CI=true react-scripts test",
"lint:scss": "stylelint 'src/**/*.scss' --syntax scss",
"lint:scss:fix": "stylefmt --recursive 'src/**/*.scss'",
"lint:js": "eslint . --ignore-path ./.gitignore --ext .js,.jsx",
"lint:js:fix": "npm run lint:js -- --fix",
"lint": "npm run lint:js && npm run lint:scss"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"backpack-react-scripts": "^7.0.2",
"bpk-component-text": "^2.0.21",
"bpk-mixins": "^19.0.21",
"bpk-stylesheets": "^4.1.2",
"eslint": "^6.6.0",
"eslint-config-skyscanner-with-prettier": "^0.8.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"stylefmt": "^6.0.3",
"stylelint": "^11.1.1",
"stylelint-config-skyscanner": "^1.0.1"
},
"browserslist": [
">0.1%",
"not dead",
"not ie <= 10",
"not op_mini all"
]
}