-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 988 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
32
33
{
"name": "pairs",
"version": "1.0.0",
"description": "Classic pairs game.",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"build": "babel src -d build && npm run css",
"watch": "parallelshell 'babel src -d build -w' 'node-sass style/index.scss -wo build/css'",
"serve": "http-server -c-1",
"start": "npm run build && npm run serve",
"css": "node-sass style/index.scss -o build/css"
},
"author": "Richard Nagy <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-transform-es2015-modules-amd": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"http-server": "^0.9.0",
"include-media": "^1.4.9",
"node-sass": "^4.5.0",
"parallelshell": "^2.0.0"
},
"dependencies": {
"jquery": "^3.1.1",
"requirejs": "^2.3.2"
}
}