-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "movie-names",
"version": "1.0.0",
"description": "🎥 Movie names",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maryzam/movie-names.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/maryzam/movie-names/issues"
},
"homepage": "https://github.com/maryzam/movie-names#readme",
"dependencies": {
"d3": "^5.7.0",
"lodash": "^4.17.11",
"memoize-one": "^4.0.3",
"react": "^16.6.0",
"react-dom": "^16.6.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"json-loader": "^0.5.7",
"style-loader": "^0.23.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}