-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.14 KB
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
{
"name": "modern-js-by-example",
"description": "A Pragmatic Book on JavaScript and all its wonderful new modern features for an eternally evolving ecosystem",
"version": "0.1.0",
"author": "Ben Junya <bjunya@gmail.com>",
"main": "index.js",
"dependencies": {
"@babel/core": "^7.2.2",
"@emotion/core": "^10.0.6",
"@emotion/styled": "^10.0.6",
"classnames": "^2.2.6",
"font-awesome": "^4.7.0",
"gatsby": "^2.3.23",
"gatsby-plugin-emotion": "^4.0.6",
"gatsby-plugin-google-analytics": "^2.0.18",
"gatsby-plugin-manifest": "^2.0.29",
"gatsby-plugin-netlify": "^2.0.13",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-remark-prismjs": "^3.2.8",
"gatsby-source-filesystem": "^2.0.29",
"gatsby-transformer-remark": "^2.3.8",
"prismjs": "^1.15.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-emotion": "^10.0.0",
"react-helmet": "^5.2.0",
"react-router-dom": "^5.1.2"
},
"keywords": [
"gatsby",
"javascript",
"learn-javascript",
"learn-programming",
"book",
"resources"
],
"repository": "https://www.github.com/MrBenJ/modern-js-by-example",
"license": "MIT",
"private": false,
"scripts": {
"start": "gatsby serve",
"test": "alex README.md book/*.md && jest",
"dev": "gatsby develop",
"build": "gatsby build",
"flow": "flow",
"lint": "eslint \"src/**/*.js\""
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"alex": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.0.0",
"babel-preset-gatsby": "^0.1.11",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.11.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-css-modules": "^2.10.0",
"eslint-plugin-jest": "^22.14.0",
"flow-bin": "^0.97.0",
"flow-typed": "^2.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"prettier": "^1.18.0",
"regenerator-runtime": "^0.13.1"
}
}