-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.67 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "light-bright",
"version": "1.0.0",
"description": "A simple light-bright app.",
"main": "src/app.js",
"scripts": {
"start": "webpack-dev-server --open --config ./webpack.dev.js",
"start-with-cypress": "npm-run-all --parallel start cy:open",
"build": "webpack --config ./webpack.prod.js",
"build:dev": "webpack --config ./webpack.dev.js",
"start-test-server": "live-server ./dist --no-browser --port=8080 --https=./node_modules/live-server-https",
"test:all": "npm-run-all --parallel test test:e2e",
"test": "jest --coverage",
"test:no-coverage": "jest",
"test:watch": "npm run test:no-coverage -- --watch",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e:prebuilt": "npm-run-all --parallel --race start-test-server cy:run",
"test:e2e": "npm run build && npm run test:e2e:prebuilt",
"format": "prettier --write ./src/**/*.{js,jsx,css,scss,json,html}",
"lint": "npm run lint:js && npm run lint:scss",
"lint:scss": "stylelint ./src/**/*.scss",
"lint:js": "eslint ./src/**/*.{js,jsx}",
"lint:fix": "npm run lint:fix:js && npm run lint:fix:scss",
"lint:fix:scss": "npm run lint:scss -- --fix",
"lint:fix:js": "npm run lint:js -- --fix",
"ci": "npm run format && npm run lint:fix && npm run test:all"
},
"author": {
"name": "Spyros Argalias",
"email": "sargalias@gmail.com",
"url": "https://sargalias.com"
},
"license": "MIT",
"dependencies": {
"array-shuffle": "1.0.1",
"bem-css-modules": "1.4.2",
"classnames": "2.2.6",
"react": "16.8.6",
"react-dom": "16.8.6",
"stylelint-prettier": "1.0.6",
"typeface-lato": "0.0.54"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.7.1",
"babel-loader": "8.0.5",
"babel-plugin-dynamic-import-node": "2.2.0",
"clean-webpack-plugin": "2.0.1",
"css-loader": "2.1.1",
"cypress": "3.2.0",
"cypress-testing-library": "3.0.1",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.2.0",
"eslint-import-resolver-webpack": "0.11.1",
"eslint-loader": "2.1.2",
"eslint-plugin-array-func": "3.1.3",
"eslint-plugin-cypress": "2.2.1",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jest": "22.5.1",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-no-loops": "0.3.0",
"eslint-plugin-no-use-extend-native": "0.4.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "7.11.0",
"eslint-plugin-react-hooks": "1.6.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-xss": "0.1.9",
"file-loader": "3.0.1",
"html-webpack-plugin": "3.2.0",
"husky": "2.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.7.1",
"lint-staged": "8.1.6",
"live-server": "^1.2.1",
"live-server-https": "0.0.2",
"mini-css-extract-plugin": "0.6.0",
"node-sass": "4.12.0",
"npm-run-all": "4.1.5",
"prettier": "1.17.0",
"pretty-quick": "1.10.0",
"react-testing-library": "7.0.0",
"regenerator-runtime": "0.13.2",
"sass-loader": "7.1.0",
"sass-resources-loader": "2.0.0",
"style-loader": "0.23.1",
"stylelint": "10.0.1",
"stylelint-config-idiomatic-order": "7.0.0",
"stylelint-config-prettier": "5.1.0",
"stylelint-config-recommended": "2.2.0",
"stylelint-declaration-use-variable": "1.7.0",
"stylelint-scss": "3.6.1",
"stylelint-webpack-plugin": "0.10.5",
"webpack": "4.30.0",
"webpack-cli": "3.3.1",
"webpack-dev-server": "3.3.1",
"webpack-merge": "4.2.1"
}
}