-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
{
"name": "sf-budget-visualization",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run watch-css & npm run watch-webpack & npm run watch-nodemon",
"watch-webpack": "./node_modules/.bin/webpack --watch",
"build-css": "./node_modules/.bin/node-sass --include-path scss css/input.scss css/output.css",
"watch-css": "./node_modules/.bin/nodemon -e scss -x \"npm run build-css\"",
"watch-nodemon": "./node_modules/.bin/nodemon server.js",
"postinstall": "./node_modules/.bin/webpack",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-react": "^6.5.0",
"express": "^4.13.4",
"flux": "^2.1.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"webpack": "^1.13.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"eslint-config-google": "^0.3.0",
"eslint-plugin-react": "^3.13.1",
"node-sass": "^3.7.0",
"nodemon": "^1.9.2",
"object.omit": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sameerank/sf-budget-visualization.git"
},
"bugs": {
"url": "https://github.com/sameerank/sf-budget-visualization/issues"
},
"homepage": "https://github.com/sameerank/sf-budget-visualization#readme",
"description": "",
"engines": {
"node": "5.1.0",
"npm": "3.3.12"
}
}