-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1005 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
{
"name": "javascript-toolkit",
"version": "1.0.0",
"description": "The bare-bones JS tools of the40Digits dev team.",
"repository": {
"type": "git",
"url": "https://github.com/40Digits/javascript-toolkit"
},
"main": "main.js",
"scripts": {
"start": "npm run watch:js",
"build": "webpack --config ./webpack.config.js --output-path ../assets/js",
"watch": "webpack -d --watch --config ./webpack.config.js --output-path ../assets/js",
"analyze": "webpack --config ./webpack.config.js --json | webpack-bundle-size-analyzer"
},
"author": "40Digits Developers <developers@40digits.com>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"webpack": "^2.2.1"
}
}