-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "doodleometry",
"version": "0.1.0",
"description": "a geometric doodling app",
"main": "support/index.js",
"keywords": [
"math",
"art",
"geometry",
"purescript",
"pux"
],
"scripts": {
"postinstall": "bower cache clean && bower install",
"clean": "rimraf static/dist",
"build": "npm run clean && webpack --config ./webpack.config.js --progress --profile --colors",
"watch": "npm run clean && webpack-dev-server --content-base static/ --hot --inline --config webpack.config.js",
"serve": "npm run build && serve -s static",
"start": "npm run watch",
"test": "./node_modules/.bin/pulp test",
"test-watch": "./node_modules/.bin/pulp --watch test"
},
"repository": {
"type": "git",
"url": "https://github.com/dlants/doodleometry"
},
"author": "Denis Lantsman",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dlants/doodleometry/issues"
},
"engines": {
"node": "^6.0.0"
},
"dependencies": {
"bower": "^1.7.9",
"preact": "^8.2.1",
"preact-compat": "^3.17.0",
"pulp": "^12.0.1",
"purescript": "^0.11.6",
"purescript-psa": "^0.5.1",
"purs-loader": "^3.1.0",
"rimraf": "^2.5.2",
"serve": "^5.2.4",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.7.1",
"webpack-node-externals": "^1.5.4",
"xhr2": "^0.1.3"
}
}