forked from f-o-a-m/purescript-kitty-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.78 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
{
"name": "foam-monitor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"psc-package": "./node_modules/.bin/psc-package update",
"postinstall": "npm run psc-package && rm -rf src/Contracts && ./node_modules/.bin/pulp build --src-path generator -m Generator --to generator.js && node generator.js --abis abis --dest src --trufle false --prefix eth_ && rm generator.js",
"build": "./node_modules/.bin/pulp browserify --to dist/app.js",
"build-css": "node-sass styles/ -o dist/",
"watch-css": "npm run build-css && node-sass styles/ -o dist/ --watch --recursive",
"webpack": "./node_modules/.bin/webpack --config ./webpack.config.js --progress --profile --colors",
"webpack-dev-server": "webpack-dev-server --content-base dist --progress"
},
"author": "Kristoffer Josefsson",
"license": "ISC",
"dependencies": {
"bignumber.js": "git+https://github.com/frozeman/bignumber.js-nolookahead.git",
"crypto-js": "^3.1.8",
"psc-package": "^0.2.4-rc1",
"pulp": "^12.0.0",
"purs": "0.0.9",
"web3": "^0.19.0",
"yargs": "^8.0.2",
"create-react-class": "^15.6.0",
"http-serve": "^1.0.1",
"material-ui": "^0.18.7",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.7",
"html-webpack-plugin": "^2.30.1",
"pulp": "^12.0.0",
"purescript-psa": "^0.5.1",
"purs-loader": "^3.1.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.9.4",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.2"
}
}