-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
{
"name": "touchstonejs-starter",
"version": "0.0.2",
"description": "Touchstone Starter",
"private": true,
"main": "src/js/app.js",
"author": "Jed Watson",
"dependencies": {
"marked": "0.3.2",
"async": "^1.2.1",
"classnames": "^2.1.2",
"gulp-install": "^0.4.0",
"moment": "^2.10.3",
"react": "^0.13.3",
"react-tappable": "^0.5.2",
"react-timers": "^3.1.0",
"superagent": "^1.2.0",
"touchstonejs": "^0.3.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"gulp": "^3.9.0",
"happiness": "*",
"touchstonejs-tasks": "^0.2.5"
},
"scripts": {
"build": "gulp clean && gulp build",
"watch": "gulp clean && gulp watch",
"start": "gulp clean && gulp dev",
"prepare": "gulp clean && gulp prepare",
"build:production": "gulp clean && NODE_ENV=production gulp build",
"prepare:production": "gulp clean && NODE_ENV=production gulp prepare",
"test": "happiness"
},
"happiness": {
"ignore": [
"platforms",
"plugins",
"src/data",
"www"
]
}
}