-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 loc) · 2.52 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
{
"author": "Guy Ellis <wildfiction@gmail.com>",
"bugs": {
"url": "https://github.com/guyellis/learn/issues"
},
"dependencies": {
"@material-ui/core": "4.3.3",
"@material-ui/icons": "4.2.1",
"autoprefixer": "10.4.16",
"fs-extra": "8.1.0",
"html-webpack-plugin": "5.5.0",
"lodash": "4.17.21",
"material-ui": "0.20.2",
"mini-css-extract-plugin": "0.8.0",
"moment": "2.29.4",
"node-sass": "9.0.0",
"prop-types": "15.7.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-markdown": "8.0.4",
"react-router-dom": "5.1.2",
"sass-loader": "7.3.1",
"webpack": "5.94.0",
"webpack-cleanup-plugin": "0.5.1",
"webpack-cli": "3.3.12"
},
"description": "Experimental learning exercises for my kids",
"devDependencies": {
"awesome-typescript-loader": "5.2.1",
"babel-eslint": "10.0.3",
"css-loader": "6.8.1",
"eslint": "6.7.2",
"eslint-config-airbnb": "18.0.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.1.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"file-loader": "5.0.2",
"jest": "29.3.1",
"postcss-loader": "7.3.3",
"pre-commit": "1.2.2",
"react-hot-loader": "4.12.18",
"react-test-renderer": "16.8.6",
"source-map-loader": "0.2.4",
"style-loader": "1.0.1",
"ts-jest": "29.0.3",
"typescript": "3.5.3",
"url-loader": "3.0.0",
"webpack-dev-server": "4.11.1"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"homepage": "https://github.com/guyellis/learn#readme",
"license": "MIT",
"main": "index.js",
"name": "learn",
"pre-commit": {
"colors": true,
"run": [
"test"
],
"silent": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/guyellis/learn.git"
},
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"coverage:view": "google-chrome coverage/lcov-report/index.html",
"coverage": "tsc && jest --coverage",
"deploy": "npm run build && npm run asset-copy && npm run upload",
"lint": "eslint --ext js --ext jsx .",
"lintfix": "eslint --ext js --ext jsx . --fix",
"start": "webpack-dev-server --hot --progress --profile --colors",
"test": "npm run lint && npm run lintfix && tsc && jest --coverage && npm run build",
"asset-copy": "cp -R assets/* public/",
"upload": "aws s3 cp public s3://learn.guyellisrocks.com/ --recursive"
},
"version": "0.0.2"
}