-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.43 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
{
"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",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"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/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"gh-pages": "^2.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"bootstrap": "^4.1.3",
"jquery": "^3.3.1",
"reactstrap": "^6.5.0"
}
}