-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 990 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": "codrops-photoeffect-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "http-server",
"watch": "webpack -w",
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "npm run start >/dev/null & echo $! > .tmp/pids; npm run watch & echo $! >> .tmp/pids",
"prestart-dev": "mkdir -p .tmp && echo '' > .tmp/pids",
"stop-dev": "kill $(cat .tmp/pids | while read line; do pgrep -P $line; done) $(cat .tmp/pids)",
"poststop-dev": "rm .tmp/pids; rmdir .tmp",
"restart-dev": "npm run stop-dev && npm run start-dev"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.6.0",
"curry": "^1.2.0",
"gsap": "^1.18.3",
"http-server": "^0.9.0",
"lodash": "^4.9.0",
"webpack": "^1.12.14",
"webpack-glsl-loader": "^1.0.1"
}
}