-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 873 Bytes
/
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
{
"name": "the-least-painful-way-to-build-a-web-app",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:batata-frita/the-least-painful-way-to-build-a-web-app.git",
"author": "Paulo Ragonha <[email protected]>",
"scripts": {
"build": "sagui build",
"dist": "sagui dist",
"format": "sagui format",
"start": "sagui develop --port 3000",
"test": "sagui test",
"test:lint": "sagui test:lint",
"test:typecheck": "sagui test:typecheck",
"test:unit": "sagui test:unit --coverage",
"test:unit:watch": "sagui test:unit --watch"
},
"devDependencies": {
"prettier": "^1.5.3",
"sagui": "^11.1.0"
},
"dependencies": {
"most": "^1.7.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-heat": "^0.3.1",
"reveal.js": "^3.5.0"
}
}