-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.28 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
53
54
55
56
{
"name": "trueque-web",
"private": true,
"version": "1.10.0",
"description": "",
"scripts": {
"start": "hjs-dev-server",
"build": "webpack",
"deploy": "git add --all && git commit -am \"$(date)\" && npm version minor && git push origin master --tags && npm run build && surge -p public -d trueque.surge.sh",
"lint": "standard src/**/*.js",
"validate": "npm ls"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"css-loader": "^0.23.1",
"file-loader": "0.8.5",
"hjs-webpack": "7.0.0",
"live-server": "^0.9.1",
"node-sass": "^3.4.2",
"postcss-loader": "^0.8.0",
"precommit-hook": "^3.0.0",
"sass-loader": "^3.1.2",
"standard": "^5.4.1",
"style-loader": "^0.13.0",
"surge": "^0.17.7",
"url-loader": "0.5.7"
},
"pre-commit": [
"lint"
],
"standard": {
"ignore": [
"public/*.js"
]
},
"dependencies": {
"classnames": "2.2.3",
"normalize.css": "^3.0.3",
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
}
}