-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.08 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
{
"name": "tessellation",
"version": "1.2.0",
"description": "Thesis on how to build functional, reactive and well structured front end applications",
"repository": {
"url": "git+https://github.com/xaviervia/tessellation.git",
"type": "git"
},
"author": "Fernando Vía Canel <[email protected]>",
"license": "Unlicense",
"scripts": {
"build": "sagui build",
"develop": "sagui develop --port 3000",
"dist": "cross-env NODE_ENV=production sagui build --optimize",
"start": "npm run develop",
"test": "npm run test:lint && npm run test:typecheck && npm run test:unit",
"test:coverage": "npm run test:unit -- --coverage",
"test:lint": "sagui lint",
"test:typecheck": "sagui typecheck",
"test:unit": "cross-env NODE_ENV=test sagui test",
"test:unit:watch": "npm run test:unit -- --watch"
},
"dependencies": {
"d3-voronoi": "^1.0.2",
"flyd": "^0.2.2",
"jiff": "^0.7.3",
"left-pad": "^1.1.3",
"ramda": "^0.22.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"sagui": "^7.0.1",
"uuid": "^2.0.3"
}
}