-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "frontend-project-from-scratch",
"version": "0.0.2",
"description": "A sandbox for building a FE project from scratch",
"private": true,
"scripts": {
"build": "npx webpack --config webpack.config.js",
"clean": "rimraf dist",
"lint": "./node_modules/.bin/eslint src/**",
"release": "standard-version",
"start:dev": "./node_modules/.bin/webpack-dev-server --env.local --mode development",
"test": "echo Hello world, please write tests"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EdDaWord/FE-from-scratch.git"
},
"author": "Edward Wang",
"license": "MIT",
"bugs": {
"url": "https://github.com/EdDaWord/FE-from-scratch/issues"
},
"homepage": "https://github.com/EdDaWord/FE-from-scratch#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"editorconfig-cli": "^0.2.1",
"eslint": "4.18.2",
"pre-commit": "^1.2.2",
"standard-version": "^4.3.0",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.3"
}
}