forked from wayfair-archive/awesome-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.71 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
106
107
108
109
110
111
112
113
114
115
{
"version": "3.0.0",
"name": "awesome-learning",
"description": "An open source platform for learning front-end tech",
"main": "n/a",
"scripts": {
"build": "npm run clean && gatsby build --prefix-paths",
"clean": "rimraf .cache public",
"develop": "npm run clean && gatsby develop",
"lint": "concurrently 'npm run lint:js' 'npm run lint:scss'",
"lint:js": "eslint --cache --ext .js,.jsx --ignore-pattern '/public/' --ignore-pattern '/exercises/' .",
"lint:scss": "stylelint 'src/**/*.scss'",
"test": "jest --config ./tests/jest-config.js",
"test-coverage": "jest --coverage --config ./tests/jest-config.js",
"test-watch": "jest --watch --config ./tests/jest-config.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": "https://github.com/wayfair/awesome-learning",
"author": "Awesome Learning™ <[email protected]>",
"license": "MIT",
"keywords": [
"gatsby",
"graphql",
"pagination",
"categories",
"tags",
"static",
"blog",
"minimal",
"react",
"theme",
"starter"
],
"engines": {
"node": "^8 || ^10"
},
"dependencies": {
"classnames": "^2.2.6",
"codecov": "^3.6.1",
"gatsby": "^2.15.28",
"gatsby-link": "^2.2.17",
"gatsby-plugin-catch-links": "^2.1.12",
"gatsby-plugin-google-gtag": "^1.1.11",
"gatsby-plugin-manifest": "^2.0.26",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.1.10",
"gatsby-plugin-sass": "^2.1.17",
"gatsby-plugin-sitemap": "^2.2.16",
"gatsby-remark-autolink-headers": "^2.1.13",
"gatsby-remark-copy-linked-files": "^2.1.23",
"gatsby-remark-responsive-iframe": "^2.2.20",
"gatsby-source-filesystem": "^2.1.28",
"gatsby-transformer-remark": "^2.3.8",
"invariant": "^2.2.4",
"katex": "^0.11.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"normalize-scss": "^7.0.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-alice-carousel": "^1.15.3",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-optional-chaining": "7.6.0",
"@babel/preset-env": "7.6.2",
"@babel/preset-react": "7.0.0",
"@storybook/addon-actions": "^5.2.4",
"@storybook/addon-info": "^5.2.4",
"@storybook/addon-knobs": "^5.2.4",
"@storybook/addon-links": "^5.2.4",
"@storybook/addon-options": "^5.2.4",
"@storybook/addons": "^5.2.4",
"@storybook/react": "^5.2.4",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.4",
"autoprefixer": "9.6.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-remove-graphql-queries": "^2.7.14",
"browserslist": "4.7.0",
"concurrently": "4.1.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "6.4.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-watch": "6.0.1",
"husky": "^3.0.7",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"prettier": "1.18.2",
"react-grid-system": "^4.4.11",
"rimraf": "3.0.0",
"sass-loader": "^8.0.0",
"sass-resources-loader": "^2.0.1",
"storybook-readme": "^5.0.8",
"style-loader": "^1.0.0",
"stylelint": "11.0.0",
"stylelint-config-recommended-scss": "4.0.0",
"stylelint-scss": "3.11.1"
}
}