-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (20 loc) · 849 Bytes
/
package.json
File metadata and controls
21 lines (20 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"scripts": {
"clean": "rimraf output && rimraf .pulp-cache",
"build": "jshint src && psa \"src/**/*.purs\" \"bower_components/purescript-*/**/*.purs\" --censor-lib --strict",
"build-all": "jshint src && jscs src && psa \"src/**/*.purs\" \"bower_components/purescript-*/**/*.purs\" --censor-lib --strict",
"test": "psc \"src/**/*.purs\" \"bower_components/purescript-*/**/*.purs\" \"test/**/*.purs\" && psc-bundle \"output/**/*.js\" --module Test.Main --main Test.Main | node"
},
"dependencies": {
"native-base": "^2.0.8",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"jscs": "^3.0.7",
"jshint": "^2.9.4",
"purescript-psa": "^0.3.8",
"rimraf": "^2.5.0"
}
}