-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
{
"name": "purescript_linear",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"js": "webpack --watch --config config/webpack.config.js --mode development",
"build": "webpack --config ./config/webpack.config.js --mode production",
"ps": "pulp --psc-package --watch build -I src:lib",
"repl": "pulp --psc-package repl -I src:lib",
"start": "./run-dev.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rlucha/purescript-exercises.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rlucha/purescript-exercises/issues"
},
"homepage": "https://github.com/rlucha/purescript-exercises#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"purty": "^0.5.0",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^2.11.2"
},
"dependencies": {
"lodash": "^4.17.5",
"lodash.curry": "^4.1.1",
"rlite-router": "^2.0.3",
"three": "^0.89.0",
"three-orbit-controls": "^82.1.0",
"ffi-utils": "file:lib/ffi-utils"
}
}