-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "touchstonejs-starter",
"version": "1.0.0",
"description": "Touchstone Starter",
"main": "src/js/app.js",
"author": "Jed Watson",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/touchstonejs/touchstonejs-starter.git"
},
"dependencies": {
"async": "^1.5.0",
"classnames": "^2.2.1",
"cordova-dialogs": "^1.0.2",
"httpify": "^3.0.0",
"react": "^0.14.3",
"react-addons-css-transition-group": "^0.14.3",
"react-container": "^0.3.1",
"react-dom": "^0.14.3",
"react-sentry": "^1.0.2",
"react-tappable": "^0.7.2",
"react-timers": "^5.0.0",
"touchstonejs": "^0.7.3"
},
"devDependencies": {
"gulp": "^3.9.0",
"happiness": "*",
"touchstonejs-tasks": "*"
},
"scripts": {
"build": "gulp clean && gulp build",
"build:production": "gulp clean && NODE_ENV=production gulp build",
"lint": "happiness",
"test": "npm run lint",
"start": "gulp clean && gulp dev",
"watch": "gulp clean && gulp watch"
},
"happiness": {
"ignore": [
"platforms",
"plugins",
"src/data",
"www"
]
}
}