-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 782 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 782 Bytes
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
{
"name": "react-basic-starter",
"version": "1.0.0",
"description": "An example react-basic project",
"repository": "lumihq/react-basic-starter",
"dependencies": {
"react": "16.6.1",
"react-dom": "16.6.1"
},
"devDependencies": {
"parcel-bundler": "^1.10.3",
"concurrently": "^4.1.0",
"psc-package": "3.0.1",
"pscid": "2.4.0",
"pulp": "12.3.0",
"purescript": "0.12.1"
},
"scripts": {
"start:parcel": "parcel ./src/index.html",
"start:build": "pulp -w build",
"start": "concurrently \"yarn start:parcel\" \"yarn start:build\"",
"purs:install": "psc-package install",
"purs:build": "psc-package build",
"build": "parcel build ./src/index.html",
"pscid": "pscid src/Main.purs",
"test": "pulp test"
}
}