-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.84 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
{
"name": "math-game-web",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/fontawesome-svg-core": "^1.2.6",
"@fortawesome/free-solid-svg-icons": "^5.4.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"eslint-config-react-app": "^2.1.0",
"netlify-cli": "^1.2.2",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"rc-progress": "^2.2.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.2",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-select": "^2.4.2",
"react-syntax-highlighter": "^10.2.1",
"redux": "^4.0.1",
"redux-form": "^7.1.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"typeface-roboto": "0.0.54"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"git add"
],
"src/**/*.{css,scss}": [
"npm run style-css",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"predeploy": "npm run build",
"deploy": "netlify deploy",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.js",
"prettier": "eslint src/**/*.js --fix",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"style-css": "csscomb --tty-mode --",
"style-all-css": "csscomb src/",
"process": "node src/data/script"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.11",
"@storybook/addon-links": "^3.4.11",
"@storybook/addon-viewport": "^3.4.11",
"@storybook/addons": "^3.4.11",
"@storybook/react": "^3.4.11",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"csscomb": "^4.2.0",
"eslint": "^4.9.0",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"front-matter": "^3.0.1",
"husky": "^0.14.3",
"jest-cli": "^21.2.1",
"lint-staged": "^4.3.0",
"node-fetch": "^2.3.0",
"prettier": "1.14.2",
"react-scripts": "1.1.5"
},
"homepage": "https://simple-math-game.netlify.com/",
"contributors": [
{
"name": "Dzianis Sheka",
"email": "dzianis.sheka@gmail.com",
"url": "https://github.com/davojta"
},
{
"name": "Alesja",
"url": "https://github.com/AlesiaGit"
}
]
}