forked from 10secondsofcode/10secondsofcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·79 lines (79 loc) · 2.3 KB
/
package.json
File metadata and controls
executable file
·79 lines (79 loc) · 2.3 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
72
73
74
75
76
77
78
79
{
"name": "10secondsofcode",
"version": "1.0.0",
"description": "The team behind 10-seconds-of-code and official 10-seconds projects.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development ",
"dev": "webpack --mode development --output ./dist/leaf.js",
"build": "webpack --mode production --output ./dist/leaf.js",
"docs-build": "gitbook build docs/ dist/docs",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/10secondsofcode/10secondsofcode.git"
},
"keywords": [
"ReactJs",
"Webpack4",
"10secondsofcode"
],
"author": "Elangovan Shanthi",
"license": "ISC",
"bugs": {
"url": "https://github.com/10secondsofcode/10secondsofcode.git/issues"
},
"homepage": "http://10secondsofcode.github.io/10secondsofcode",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"docpress": "0.7.4",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.4.2",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.3.1",
"bootstrap": "^4.1.3",
"front-matter-loader": "^0.2.0",
"jquery": "^3.3.1",
"markdown-loader": "^4.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-markdown": "^4.0.6",
"react-router-dom": "^5.1.2",
"reactstrap": "^6.5.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"docpress": {
"github": "10secondsofcode/10secondsofcode"
}
}