forked from knowbody/crra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 1.43 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
52
53
54
55
{
"name": "create-reason-react-app",
"private": true,
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm-run-all build:*",
"build:bsb": "bsb -make-world",
"build:webpack": "webpack -p",
"clean": "npm-run-all clean:*",
"clean:bsb": "bsb -clean-world",
"clean:project": "rimraf public/main.js lib .merlin 'src/**/*.js'",
"dev": "npm run build:bsb && npm run dev:parallel",
"dev:parallel": "npm-run-all --parallel dev:bsb dev:webpack",
"dev:bsb": "npm run build:bsb -- -w",
"dev:webpack": "webpack-dev-server -w",
"now-start": "pushstate-server public/",
"jest": "jest",
"test": "npm-run-all build:bsb jest"
},
"keywords": [
"reason",
"react",
"crra",
"reason-react",
"create-reason-react-app"
],
"author": "Mateusz Zatorski",
"license": "MIT",
"dependencies": {
"bs-director": "^0.0.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"reason-react": "https://github.com/reasonml/reason-react.git"
},
"devDependencies": {
"bs-jest": "^0.1.0",
"bs-platform": "^1.7.4",
"bs-react-test-renderer": "^1.0.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^20.0.4",
"npm-run-all": "^4.0.2",
"pushstate-server": "^3.0.0",
"rimraf": "^2.6.1",
"webpack": "^2.6.1",
"webpack-dev-server": "2",
"write-file-webpack-plugin": "^4.0.2"
},
"jest": {
"roots": [
"src"
]
}
}