-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
38 lines (38 loc) · 902 Bytes
/
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
{
"name": "resume-native",
"version": "1.0.0",
"scripts": {
"dev": "webpack-dev-server --open --config ./build/webpack.dev.js",
"build": "node ./build/build.js",
"lint": "standard",
"validate": "npm ls"
},
"main": "app.js",
"author": "qianlongo",
"license": "MIT",
"dependencies": {
"marked": "^0.3.6",
"prismjs": "^1.6.0"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.27.3",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"precommit-hook": "^3.0.0",
"standard": "^9.0.2",
"style-loader": "^0.16.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.4.2",
"webpack-merge": "^4.1.1"
},
"pre-commit": [
"lint"
],
"standard": {
"ignore": "dist"
}
}