-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "OCamURL-client",
"version": "0.1.0",
"scripts": {
"build-reason": "bsb -make-world",
"watch-reason": "bsb -make-world -w",
"clean-reason": "bsb -clean-world",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack",
"webpack-watch": "webpack -w",
"build-css":
"postcss src/main.pcss --dir build/ --ext css --verbose",
"watch-css":
"postcss src/main.pcss --dir build/ --ext css --watch --verbose",
"build": "npm run build-reason && npm run webpack && npm run build-css"
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"dependencies": {
"apollo-cache-inmemory": "^1.1.5",
"apollo-client": "^2.2.0",
"apollo-link": "^1.0.7",
"apollo-link-context": "^1.0.3",
"apollo-link-error": "^1.0.3",
"apollo-link-http": "^1.3.2",
"autoprefixer": "^8.0.0",
"bs-webapi": "0.8.2",
"graphql": "^0.11.0",
"graphql-tag": "^2.6.0",
"graphql_ppx": "0.2.0",
"postcss-cli": "^5.0.0",
"postcss-color-function": "^4.0.1",
"postcss-import": "^11.0.0",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^3.0.0",
"postcss-property-lookup": "^2.0.0",
"postcss-scss": "^1.0.3",
"postcss-simple-vars": "^4.1.0",
"react": "^15.4.2",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^15.4.2",
"reason-apollo": "^0.6.12",
"reason-react": ">=0.3.0",
"reductive": "^0.2.0"
},
"devDependencies": {
"bs-platform": "^2.1.0",
"webpack": "^3.8.1"
}
}