This repository has been archived by the owner on Oct 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
{
"name": "buttram.net",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build-static && webpack-dev-server --inline --hot --colors --content-base dist/ --output-public-path=assets/ --host 0.0.0.0",
"lint": "eslint src/**",
"build": "npm run build-static && webpack -p --config webpack.config.build.js --progress",
"build-ci": "webpack -p --config webpack.config.build.js --display-error-details",
"surge": "npm run build && surge ./dist",
"build-static": "babel-node --presets react,es2015 build-static.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zbuttram/buttram.net.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zbuttram/buttram.net/issues"
},
"homepage": "https://github.com/zbuttram/buttram.net#readme",
"dependencies": {
"babel-polyfill": "^6.9.1",
"classnames": "^2.2.5",
"jquery": "^3.0.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"remarkable": "^1.6.2"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.9.0",
"css-loader": "^0.23.1",
"eslint": "^2.13.0",
"eslint-plugin-react": "^5.2.2",
"file-loader": "^0.8.5",
"json-loader": "^0.5.4",
"node-sass": "^3.8.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}