-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "p5js-boilerplate",
"version": "1.0.0",
"description": "P5JS starter kit including ES6, Webpack and ESLint.",
"main": "sketch.js",
"scripts": {
"start": "npm install && webpack --display-error-details --progress --colors --watch & npm run serve",
"serve": "node server.js",
"lint": "eslint ./src ./package.json --ext .js,.json --fix"
},
"pre-commit": [
"lint"
],
"author": "Justin D'Errico",
"license": "",
"devDependencies": {
"babel-core": "^6.3.15",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-json": "^1.2.0",
"pre-commit": "^1.2.2",
"webpack": "^1.12.9"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"express": "^4.13.3",
"lodash": "^4.0.0",
"p5": "^0.5.5",
"ramda": "^0.22.1"
}
}