-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 930 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
34
35
36
37
{
"name": "emocrush",
"description": "Candy Crush clone with emojis",
"version": "0.1.0",
"author": "neemzy <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public",
"start:dev": "sirv public --dev",
"test": "jest"
},
"devDependencies": {
"babel-jest": "^24.0.0",
"babel-preset-env": "^1.7.0",
"jest": "^24.0.0",
"npm-run-all": "^4.1.3",
"rollup": "^0.66.2",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-svelte": "^4.3.1",
"rollup-plugin-terser": "^3.0.0",
"sirv-cli": "^0.2.2",
"svelte": "^2.13.5"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
}
}