-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·30 lines (30 loc) · 850 Bytes
/
package.json
File metadata and controls
executable file
·30 lines (30 loc) · 850 Bytes
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
{
"name": "theconqueror",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack -d --watch --config webpack.config.js",
"serve": "babel-watch server/server.js",
"lint": " ./node_modules/.bin/eslint --quiet --fix ./src/*.js"
},
"pre-push": [
"lint"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-preset-env": "^1.7.0",
"babel-watch": "^2.0.7",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"pre-push": "^0.1.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {}
}